Add Site settings > General (#133)

This commit is contained in:
Riccardo Graziosi
2022-07-18 10:47:54 +02:00
committed by GitHub
parent bdc4004e4a
commit 35831b9801
99 changed files with 2405 additions and 281 deletions

View File

@@ -1,4 +1,6 @@
class StaticPagesController < ApplicationController
skip_before_action :load_tenant_data, only: [:showcase, :pending_tenant, :blocked_tenant]
def roadmap
@post_statuses = PostStatus
.find_roadmap
@@ -8,4 +10,14 @@ class StaticPagesController < ApplicationController
.find_with_post_status_in(@post_statuses)
.select(:id, :title, :board_id, :post_status_id, :user_id, :created_at)
end
def showcase
render html: 'Showcase home page.'
end
def pending_tenant
end
def blocked_tenant
end
end