summaryrefslogtreecommitdiffstats
path: root/ogcp/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* ogcp is AGPLv3+OpenGnSys Support Team2021-05-201-0/+7
| | | | Update license header in files.
* config: rename config file to ogcp.jsonJose M. Guisado2020-11-061-1/+1
| | | | Do not use the same name as ogserver config file.
* config: use from_json to read ogserver configJose M. Guisado2020-11-061-1/+3
| | | | | | | | | | | | | | | This patch introduces the usage of Flask.Config class so the config can be read at startup (__init__) only once. Config keys must be uppercase so that from_json method does take it into account. dormousehole.readthedocs.io/en/stable/api.html#flask.Config.from_json Prior to this patch each request required opening and closing the ogserver.json file via load_config in views.py. In the future the decorated load_config function inside views.py may be removed to avoid creating multiple instances of the OGServer class.
* Add WoL actionRoberto Hueso Gómez2020-09-041-0/+8
| | | | | | This action can be applied on one or multiple scopes. This implementation use Flask-WTF as a way to build and valdiate forms. As a side effect, this adds CSRF protection to all forms.
* Add basic backend structureRoberto Hueso Gómez2020-08-311-0/+6
This adds views functions and ogServer config loading.