aboutsummaryrefslogtreecommitdiff
path: root/app/views/welcome
Commit message (Collapse)AuthorAgeFilesLines
* Enable switching Agenthellekin2020-10-091-1/+7
| | | | | | | Switching current Agent can help with roles and resource access. Go to your dashboard by clicking the avatar. Select agent and hit "Select"
* Wrap debug with loginhellekin2020-10-091-4/+6
| | | | To avoid breaking on logout
* Scope routes to Agenthellekin2020-10-091-2/+12
| | | | | | | Since an Agent is required for all records, we scope the routes and get it present for free ;) This commit also adds resource views.
* Make map more beautifulhellekin2020-10-081-32/+21
| | | | | | | | | | | | | This commit introduces a few things: 1. New `content_for` hooks for :debug, :head, and :body_end so that views code remains consistent and clean 2. Fullscreen map! 3. Welcome#index view, the Rails way It also moves controller-related code to the controller, Enjoy!
* Removed the hand-picked markers because they caused errorsNemael2020-10-081-3/+3
|
* Map added but no dynamic points placed, the current points are hand-picked ↵Nemael2020-10-081-0/+48
| | | | from the data
* First pass at something visiblehellekin2020-10-061-6/+0
| | | | This is a first version of the application, to go beyond simple authentication.
* Add Authentication logichellekin2020-10-053-0/+28
The ApplicationController provides a `current_user` method (and helper) to access the authenticated user (if any). The WelcomeController provides minimal logic to authenticate against DiscourseSSO. Current state is that one can login and logout. Views need a lot of work.