mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
11 lines
306 B
Ruby
11 lines
306 B
Ruby
class StaticPagesController < ApplicationController
|
|
def roadmap
|
|
@post_statuses = PostStatus
|
|
.find_roadmap
|
|
.select(:id, :name, :color)
|
|
|
|
@posts = Post
|
|
.find_with_post_status_in(@post_statuses)
|
|
.select(:id, :title, :board_id, :post_status_id, :user_id, :created_at)
|
|
end
|
|
end |