filestash/client
Mickael Kerjean 90a2ae2b8e feature (config): make config look nicer
before this, our config.json didn't look user friendly with a massive:
{
    "general": {
        "name": null,
        "port": null,
        "host": "demo.filestash.app",
        "secret_key": "__REDACTED__",
        "force_ssl": null,
        "editor": null,
        "fork_button": null,
        "logout": null,
        "display_hidden": null,
        "refresh_after_upload": null,
        "upload_button": null,
        "upload_pool_size": null,
        "filepage_default_view": null,
        "filepage_default_sort": null,
        "cookie_timeout": null,
        "custom_css": null,
        "auto_connect": null,
        "enable_image": null,
        "remember_me": null
    },
    "features": {
        "api": {
            "enable": null,
            "api_key": "foobar ",
            "enabled": null
        },
        "share": {
            "enable": null,
            "default_access": null,
            "redirect": null
        },
     .....
}

which now translates to a much nicer:
{
    "general": {
         "host": "demo.filestash.app",
         "secret_key": "__REDACTED__"
    },
    "features": {
        "api": {
            "api_key": "foobar "
        },
    ...
}
2022-11-21 08:08:24 +11:00
..
assets feature (static): upate a few static pages 2022-01-20 17:15:49 +11:00
components improve (css): form builder UX 2022-11-16 22:12:00 +11:00
helpers feature (config): make config look nicer 2022-11-21 08:08:24 +11:00
locales fix(locales): hostname pt language to "nome de host" instead "nome de anfritião" (#527) 2022-11-09 21:31:37 +11:00
model fix (tags): wip development 2022-10-11 18:14:02 +11:00
pages feature (config): make config look nicer 2022-11-21 08:08:24 +11:00
worker maintain (eslint): linting on frontend 2021-12-21 01:32:37 +11:00
index.html improve (boot): decrease boot time 2022-10-11 07:21:14 +11:00
index.js fix (boot): boot error 2022-10-11 08:12:12 +11:00
router.js feature (tagging): prepare the ground for a new tagging feature 2022-10-06 23:33:58 +11:00