mirror of
https://github.com/System-End/highway.git
synced 2026-04-19 18:35:18 +00:00
57 lines
1.6 KiB
Ruby
57 lines
1.6 KiB
Ruby
Rails.application.routes.draw do
|
|
# Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html
|
|
|
|
# Reveal health status on /up that returns 200 if the app boots with no exceptions, otherwise 500.
|
|
# Can be used by load balancers and uptime monitors to verify that the app is live.
|
|
get "up" => "rails/health#show", as: :rails_health_check
|
|
|
|
# Render dynamic PWA files from app/views/pwa/* (remember to link manifest in application.html.erb)
|
|
# get "manifest" => "rails/pwa#manifest", as: :pwa_manifest
|
|
# get "service-worker" => "rails/pwa#service_worker", as: :pwa_service_worker
|
|
|
|
# Defines the root path route ("/")
|
|
root "landing#index"
|
|
resources :posts
|
|
resources :users
|
|
get '/projects', to: 'projects#index'
|
|
get '/projects/:repo/:project_name', to: 'projects#show', as: :project
|
|
|
|
get "/markdown", to: "markdown_projects#index"
|
|
|
|
get "/info", to: "info#show"
|
|
|
|
get "/dashboard", to: "landing#dashboard", as: :dashboard
|
|
get "/leaderboards", to: "landing#leaderboards", as: :leaderboards
|
|
|
|
resources :admin, only: [] do
|
|
collection do
|
|
get "/dashboard", to: "admin#dashboard", as: :dashboard
|
|
end
|
|
end
|
|
|
|
# otp auth + session
|
|
# resources :sessions
|
|
|
|
post "/signin", to: "sessions#create", as: :signin
|
|
get "/auth/code/:code", to: "sessions#exchange_code", as: :exchange_code
|
|
|
|
if Rails.env.development?
|
|
mount LetterOpenerWeb::Engine, at: "/letter_opener"
|
|
end
|
|
|
|
## prize shit
|
|
resources :prizes do
|
|
member do
|
|
post :add_to_box
|
|
end
|
|
end
|
|
|
|
resources :user_prizes, only: [] do
|
|
member do
|
|
patch :claim
|
|
end
|
|
end
|
|
|
|
get '/prize_box', to: 'users#prize_box', as: :prize_box
|
|
|
|
end
|