about summary refs log tree commit diff stats
path: root/data/maps/the_lively/rooms
Commit message (Expand)AuthorAgeFilesLines
* Converted puzzle symbols to an enumStar Rauchenberger2025-08-201-8/+8
* Added the_livelyStar Rauchenberger2025-08-162-0/+69
7971d7a ^




7e2e423 ^
ad80c40 ^


9d6d876 ^

5581530
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
                                






                                       




                                   
 


                                      

                                      
   
Rails.application.routes.draw do
  namespace :admin do
    get '/', to: 'dashboard#index'

    resources :blogs, except: [:show]
  end

  mount Ckeditor::Engine => '/ckeditor'

  devise_for :users, controllers: {
    sessions: 'users/sessions',
    passwords: 'users/passwords'
  }

  root "records#index"

  get 'says/:slug', to: 'entries#show'

  mount Pokeviewer::Engine => '/poke3'
end