mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 13:16:05 +01:00
8 lines
126 B
Ruby
8 lines
126 B
Ruby
class StaticController < ApplicationController
|
|
def index
|
|
end
|
|
|
|
def about
|
|
@admins = User.where(admin: true)
|
|
end
|
|
end
|