mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-24 19:23:41 +01:00
8 lines
126 B
Ruby
8 lines
126 B
Ruby
class HomeController < ApplicationController
|
|
layout 'dashboard'
|
|
|
|
before_action :authenticate_user!
|
|
|
|
def index
|
|
end
|
|
end
|