summaryrefslogtreecommitdiff
path: root/server/config.yaml.dist
AgeCommit message (Collapse)Author
2025-02-16client+server: permission posts:bulk-edit:relationsHunternif
2025-02-16server: add privilege to view & list "sketchy" postsHunternif
2025-02-16Merge branch 'priv-view-unsafe-posts' into hunternifHunternif
2025-02-16server: add privilege posts:list:unsafe, filter unsafe posts for users ↵Hunternif
without privilege
2025-02-16server: add privilege posts:view:unsafeHunternif
2025-02-15Merge branch 'master' into hunternifHunternif
2023-01-19client: add bulk delete feature (#459)Neo
This introduces a new privilege 'posts:bulk-edit:delete' which by default is given to power users.
2021-08-31server: implement search for similar posts based on tagsHunternif
2021-08-04Merge remote-tracking branch 'origin/master' into hunternifHunternif
# Conflicts: # client/css/post-content-control.styl # client/css/post-list-view.styl # client/html/post_edit_sidebar.tpl # client/js/controllers/post_list_controller.js # client/js/controllers/post_main_controller.js # client/js/controllers/post_upload_controller.js # client/js/controllers/tag_controller.js # client/js/controllers/user_list_controller.js # client/js/controls/expander_control.js # client/js/controls/post_content_control.js # client/js/controls/post_edit_sidebar_control.js # client/js/controls/post_readonly_sidebar_control.js # client/js/controls/tag_input_control.js # client/js/main.js # client/js/models/abstract_list.js # client/js/models/post.js # client/js/models/post_list.js # client/js/models/settings.js # client/js/models/tag.js # client/js/models/tag_list.js # client/js/tags.js # client/js/util/search.js # client/js/util/touch.js # client/js/util/uri.js # client/js/util/views.js # client/js/views/post_main_view.js # client/js/views/post_upload_view.js # client/js/views/posts_header_view.js # client/js/views/posts_page_view.js # client/js/views/settings_view.js # client/js/views/tag_view.js # client/package-lock.json # client/package.json # server/config.yaml.dist # server/szurubooru/api/__init__.py # server/szurubooru/api/post_api.py # server/szurubooru/api/tag_api.py # server/szurubooru/func/posts.py # server/szurubooru/func/tags.py # server/szurubooru/model/__init__.py # server/szurubooru/model/post.py # server/szurubooru/model/tag.py # server/szurubooru/search/configs/__init__.py # server/szurubooru/search/configs/post_search_config.py # server/szurubooru/search/executor.py # server/szurubooru/tests/api/test_post_retrieving.py # server/szurubooru/tests/api/test_post_updating.py # server/szurubooru/tests/api/test_tag_updating.py # server/szurubooru/tests/conftest.py # server/szurubooru/tests/func/test_posts.py # server/szurubooru/tests/func/test_tags.py # server/szurubooru/tests/search/configs/test_post_search_config.py
2020-09-19client+server: add tag category ordering featureneobooru
Fixes #209
2020-08-13server: API support for webhooksShyam Sunder
Closes #339
2020-06-04client+server: add post pools featureShyam Sunder
2020-06-02PR fixesRuin0x11
2020-05-04Add list of posts to poolsRuin0x11
2020-05-03Add pool CRUD operations/pagesRuin0x11
2020-04-03server/posts/upload: limit filesize for uploads through youtube-dlShyam Sunder
This will be controlled by the config parameter 'max_dl_filesize'. TODO: In a future commit, the regular downloader should also respect this parameter.
2020-04-03server/posts/upload: Add youtube-dl functionalityShyam Sunder
allows for video-based posts to be created by using youtube-dl on the server. Access is controlled with the 'uploads:use_downloader' permission.
2020-03-13all: purge remaining elasticsearch artifactsShyam Sunder
2020-03-13server/image_search: implement reverse search functionality in postgresShyam Sunder
This will remove the dependency on the Elasticsearch database. The search query is passed currently as raw SQL. Proper implementation using SQLAlchemy will need custom ORM classed to be made. Additional config parameter "allow_broken_uploads" has been added.
2019-09-28server/tests: integrate testing into DockerShyam Sunder
2019-09-15server/image-hash: optionally allow for elasticsearch authenticationShyam Sunder
2019-09-04server/tools: better documentation for file rename admin scriptShyam Sunder
2019-07-22server/config: Add 'domain' and 'smtp from' config entriesneobooru
Fixes #193 and #256 This however requires users to manually set the domain in the config.yaml. This field currently is optional, but it would probably be better to make it required and not fall back to HTTP_ORIGIN and HTTP_REFERER, which might be inaccurate or not set (especially behind reverse proxies and the like) server/config: Leave domain empty by default Co-Authored-By: Shyam Sunder <sgsunder1@gmail.com>
2019-04-23server: delete metricsHunternif
2019-04-19server/metrics: implement metrics search config + api + testsHunternif
2019-04-18server/test: create or update post metrics via updating postHunternif
2019-04-16Prepare API to create metricHunternif
2018-07-25build: add Docker functionality and documentationShyam Sunder