aboutsummaryrefslogtreecommitdiffstats
path: root/src/models
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade to use Rocket 0.5.0-rc.1Harald Eilertsen2021-08-241-9/+13
|
* Add info about the event to the db and render landing page.Harald Eilertsen2020-08-251-0/+45
|
* models: Drop unused import.Harald Eilertsen2020-08-251-1/+0
|
* Implement edit screenings in web ui.Harald Eilertsen2020-08-231-1/+2
|
* Change start/end times to complete timestamps.Harald Eilertsen2020-08-231-10/+6
| | | | | | | 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 adding rooms through the web ui.Harald Eilertsen2020-08-221-1/+1
|
* Update deps, drop serde_derive.Harald Eilertsen2020-08-223-3/+3
| | | | | serde_derive is included by passing the 'derive' feature to serde instead.
* Rename ScreeningRecord model to ScreeningHarald Eilertsen2019-08-101-2/+2
|
* Rename Screening model to AggregateScreeningHarald Eilertsen2019-08-101-4/+5
|
* Update /screenings endpoint to return full info on screenings.Harald Eilertsen2019-04-283-7/+34
| | | | | This makes each screening record self-contained, and the json payload more consistent with how it semantically fit together.
* Move functions to query/modify db to connection object.Harald Eilertsen2019-04-083-69/+3
| | | | | | 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-081-0/+77
| | | | | | 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-021-0/+43
|
* Actually fetch available rooms from the database.Harald Eilertsen2019-03-211-0/+35