aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* chore: remove console.logPitu2021-06-171-2/+0
|
* feat: show validation errors from joi on the frontendZephyrrus2021-06-177-26/+67
|
* feat: show setting values on the settings page and implement sending to ↵Zephyrrus2021-06-174-26/+64
| | | | backend (no saving yet)
* feat: fetch all settings if adminPitu2021-06-172-0/+27
|
* fix: upload sizePitu2021-06-171-1/+1
|
* feat: fetch settings from apiPitu2021-06-175-14/+35
|
* feat: make frontend use database settingsPitu2021-06-172-26/+9
|
* chore: update db migration, seed and docker envPitu2021-06-152-29/+22
|
* chore: update process.env usagePitu2021-06-1511-158/+76
|
* chore: get host from req instead of configPitu2021-06-0812-32/+24
|
* wipPitu2021-06-071-0/+1
|
* feat: implement initial values and saving to db logicPitu2021-03-255-3/+90
|
* chore: move database migration scriptPitu2021-03-251-7/+2
|
* wipPitu2021-03-232-4/+34
|
* Merge branch 'feature/database_based_settings' of ↵Pitu2021-03-235-107/+403
|\ | | | | | | https://github.com/Zephyrrus/huskysafe into Zephyrrus-feature/database_based_settings
| * fix: sections not renderingZephyrrus2021-01-113-11/+26
| |
| * feat: add sections to settings object metaZephyrrus2021-01-113-8/+98
| |
| * feat: add dynamic settings page rendering based on the Joi objectZephyrrus2021-01-105-124/+189
| |
| * feat: create settings schema (used for rendering and validating)Zephyrrus2021-01-091-0/+126
| |
* | fix: disabled users on migrationPitu2021-02-211-1/+1
| |
* | fix: default valuesPitu2021-02-211-3/+3
| |
* | chore: update logo to be square for embedsPitu2021-01-211-0/+0
| |
* | chore: update metadataPitu2021-01-212-1/+4
| |
* | fix: potentially fix meta embedsPitu2021-01-211-10/+12
| |
* | feat: prevent embeds being nsfwPitu2021-01-201-7/+9
| |
* | feat: make public albums ssr friendlyPitu2021-01-201-15/+18
| |
* | chore: switch to asyncData where neededPitu2021-01-2010-53/+36
| |
* | feat: enable ssr and serve it with the apiPitu2021-01-203-23/+8
| |
* | chore: remove console logsPitu2021-01-201-3/+0
| |
* | feat: add pagination to public album linksPitu2021-01-202-21/+90
| |
* | feat: add pagination to user files in admin viewPitu2021-01-203-13/+68
| |
* | fix: trying to fetch tags and albums on a public album linkZephyrrus2021-01-172-56/+18
|/
* Merge pull request #251 from Zephyrrus/fix/paginate_searchKana2021-01-095-17/+64
|\ | | | | fix: pagination not working when searching & fix: search not working on albums
| * fix: pagination not working when searchingZephyrrus2021-01-085-17/+64
| | | | | | | | fix: search not working on albums
* | feat: use LIKE on queries for case sensitivity issuesPitu2021-01-091-4/+4
|/
* chore: remove query from API responsePitu2021-01-091-3/+3
|
* fix: prevent db from committing suicidePitu2021-01-081-4/+0
|
* chore: be able to refresh stats on demandPitu2021-01-083-7/+41
|
* fix: pg driver doesn't return anything without .returning()Zephyrrus2021-01-083-2/+15
| | | | feat: disable .returning() is not supported warning message, it's useless.
* fix: don't generate a stat every second on minute 0 of every hourZephyrrus2021-01-081-1/+1
|
* chore: refactor stats generator to use an enum for typesZephyrrus2021-01-0713-28/+93
| | | | | | | | fix: saved data not being converted to JSON automatically when using SQLite (and possibly MSSQL) feat: display when a stat was generated in the section's header fix: not being able to click through the footer (sorry IE11 users, you still won't be able to click through it) fix: add is-mobile to columns so they don't stack on top of each other feat: add text next to the NSFW toggle and make it look like the elements around it (begone round iOS edges)
* Merge branch 'feature/stats-dashboard' into feature/system_status_pageZephyrrus2021-01-0711-14/+294
|\
| * fix: indentationPitu2021-01-071-2/+2
| |
| * feature: Add basic statistics UIPitu2021-01-078-1/+277
| |
| * chore: update sharex snippet to use apiKey instead of jwtPitu2021-01-073-13/+17
| |
* | feat: change mutation timestamp on every database mutationZephyrrus2021-01-0719-22/+40
| |
* | fix: use PassThrough from FileType to get the real mimetype of a file while ↵Zephyrrus2021-01-073-19/+39
| | | | | | | | it's being saved to the disk
* | chore: Move statistics related functions to it's own fileZephyrrus2021-01-079-236/+332
| | | | | | | | | | | | fix: Extract database constructor to a separate file to ensure we only create one knex instance/db feat: Add cron for saving the stats to the database every hour feat: Get cached stats from database (if a stat is not found in the db, generate it)
* | feat: Add experimental stats endpoint (no cache system yet)Zephyrrus2021-01-071-0/+208
| |
* | feat: check for real mimetype using file-typeZephyrrus2021-01-074-22/+27
|/ | | | For now, if file-type returns undefined, we take the value from the browser. In the future this should be removed to ensure people can't bypass the real mime checking using a special file that can't be recognized by file-type.