aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Implement update events.devHarald Eilertsen2021-08-253-0/+30
|
* Refactor event templates and add edit form.Harald Eilertsen2021-08-253-10/+47
|
* Upgrade to use Rocket 0.5.0-rc.1Harald Eilertsen2021-08-248-162/+194
|
* Use relative URLs for redirects.Harald Eilertsen2020-08-254-7/+7
|
* Reenable serving static files.Harald Eilertsen2020-08-251-0/+1
| | | | These have a rank higher (lower presedence) than the predefined routes.
* Add info about the event to the db and render landing page.Harald Eilertsen2020-08-256-2/+131
|
* models: Drop unused import.Harald Eilertsen2020-08-251-1/+0
|
* Move database config to Rocket.toml.Harald Eilertsen2020-08-242-16/+3
| | | | | This makes for one place to config everything instead of programatically setting the config.
* Implement edit screenings in web ui.Harald Eilertsen2020-08-234-2/+72
|
* Store timestamps in UTC.Harald Eilertsen2020-08-231-6/+16
| | | | | | | | | For now we just hardcode that the local timezone of the site is UTC+2. Good enough for now, but something that should be configurable. Also split the date and time entries in the form again, the date refers to the start date. If the end time is before the start time, we assume it's the day after. Again, good enough for now.
* Change start/end times to complete timestamps.Harald Eilertsen2020-08-234-26/+22
| | | | | | | The way we had this until now with a date and separate start and end times does not really work. There are cases when a screening starts on one day, but ends on the next. By keeping a complete timestamp for both the start and end times, we don't fall into this problem.
* Implement deleting screenings from web ui.Harald Eilertsen2020-08-233-1/+19
|
* Implement adding screenings in the web ui.Harald Eilertsen2020-08-233-15/+76
|
* Implement adding and listing films.Harald Eilertsen2020-08-233-4/+47
|
* Implement adding rooms through the web ui.Harald Eilertsen2020-08-224-3/+30
|
* Swap rank on plain and json response for room list.Harald Eilertsen2020-08-221-7/+9
| | | | Note to self: More explicit should have lower rank (higher precedence.)
* Use Tera templates to render pages.Harald Eilertsen2020-08-222-3/+17
|
* Update deps, drop serde_derive.Harald Eilertsen2020-08-223-3/+3
| | | | | serde_derive is included by passing the 'derive' feature to serde instead.
* Drop attribute no longer needed from lib.Harald Eilertsen2019-08-101-1/+1
| | | | Feature has been stabilized so no need to explicitly enable it anymore.
* Add db::get_screeinings to get plain screening model.Harald Eilertsen2019-08-102-1/+6
|
* Rename ScreeningRecord model to ScreeningHarald Eilertsen2019-08-101-2/+2
|
* Rename Screening model to AggregateScreeningHarald Eilertsen2019-08-105-11/+12
|
* Update /screenings endpoint to return full info on screenings.Harald Eilertsen2019-04-285-12/+40
| | | | | This makes each screening record self-contained, and the json payload more consistent with how it semantically fit together.
* Import model structs to main models module.Harald Eilertsen2019-04-086-14/+18
|
* Move functions to query/modify db to connection object.Harald Eilertsen2019-04-087-73/+69
| | | | | | Makes tha API a bit nicer by asking the database rather than passing the database on to each model. Reserve models for method/functions that work on the model structs themselves.
* Add endpoint to fetch screenings from the database.Harald Eilertsen2019-04-085-2/+114
| | | | | | Not entirely happy about the way this turned out for now. A more ergonomic return type from the models::screenings::get_all() function will be investigated.
* Add models::film::by_title and models::room::by_name methods.Harald Eilertsen2019-04-082-0/+14
|
* Add route to fetch films from database.Harald Eilertsen2019-04-025-2/+80
|
* Actually fetch available rooms from the database.Harald Eilertsen2019-03-215-7/+67
|
* Pass database url into build_rocket helper function.Harald Eilertsen2019-03-202-5/+5
|
* Refactoring, move db connection and room controller to separate modules.Harald Eilertsen2019-03-044-20/+81
|
* Use rocket_contrib's JsonValue as return type.Harald Eilertsen2019-03-041-3/+4
|
* Begin implement /rooms endpoint.Harald Eilertsen2019-03-042-26/+60
| | | | | | Refactors the code by moving the implementation to a library, to make it testable. A dummy /rooms endpoint returning an empty list was added as well.
* Add basic db schema.Harald Eilertsen2019-03-041-0/+31
|
* Set up database and connection pool with rocket_contrib::databases.Harald Eilertsen2019-03-041-2/+28
| | | | | Set the env var DATABASE_URL before running the server. A .env file in the root of the project is also supported.
* Use rocket_contrib StaticFiles module to serve static files.Harald Eilertsen2019-03-041-26/+3
| | | | | | | This also changes the structure of the app quite significantly. Instead if generating the html for the index, we simply provide a public/index.html static file instead. For now this seems to make sense, it may not hold in the long run, but that's for another time to worry about.
* Enable askama rocket integration.Harald Eilertsen2019-03-031-7/+3
| | | | Let's us return templates directly, and have rocket render it for us.
* Add license.Harald Eilertsen2019-03-021-0/+17
|
* Use askama for templates.Harald Eilertsen2019-03-021-3/+19
|
* Add favicon and route to get public files.Harald Eilertsen2019-03-021-2/+8
|
* Into space...Harald Eilertsen2019-03-021-0/+12