8 lines
122 B
Ruby
8 lines
122 B
Ruby
![]() |
class PostsController < ApplicationController
|
||
|
before_action :authenticate!
|
||
|
|
||
|
def index
|
||
|
@site = find_site
|
||
|
end
|
||
|
end
|