Tasks display

This commit is contained in:
2025-07-12 17:50:56 +03:00
parent 42d45853ff
commit 4f5b9dcf89
12 changed files with 120 additions and 7 deletions
+6 -1
View File
@@ -1,3 +1,5 @@
# frozen_string_literal: true
require_relative "boot"
require "rails"
@@ -37,6 +39,9 @@ module SubtleStorm
# config.eager_load_paths << Rails.root.join("extras")
# Don't generate system test files.
config.generators.system_tests = nil
config.generators do |g|
g.system_tests nil
g.template_engine :slim
end
end
end
+5 -2
View File
@@ -1,3 +1,5 @@
# frozen_string_literal: true
Rails.application.routes.draw do
resource :session
resources :passwords, param: :token
@@ -5,7 +7,7 @@ Rails.application.routes.draw do
# 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
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
@@ -13,6 +15,7 @@ Rails.application.routes.draw do
# Defines the root path route ("/")
# root "posts#index"
resources :projects
resources :tasks
end