aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add route to fetch films from database.Harald Eilertsen2019-04-021-2/+3
|
* Actually fetch available rooms from the database.Harald Eilertsen2019-03-211-1/+5
|
* Pass database url into build_rocket helper function.Harald Eilertsen2019-03-201-4/+1
|
* Refactoring, move db connection and room controller to separate modules.Harald Eilertsen2019-03-041-20/+7
|
* Use rocket_contrib's JsonValue as return type.Harald Eilertsen2019-03-041-3/+4
|
* Begin implement /rooms endpoint.Harald Eilertsen2019-03-041-0/+58
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.