mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-03-22 00:37:48 +01:00
8 lines
137 B
Ruby
8 lines
137 B
Ruby
class StaticController < ApplicationController
|
|
def index
|
|
end
|
|
|
|
def about
|
|
@admins = User.where(admin: true).order(:id)
|
|
end
|
|
end
|