18 lines
339 B
Ruby
18 lines
339 B
Ruby
module Users
|
|
class CommentsController < ApplicationController
|
|
include UserMethods
|
|
include PaginationMethods
|
|
|
|
layout "site"
|
|
|
|
before_action :authorize_web
|
|
before_action :set_locale
|
|
before_action :check_database_readable
|
|
|
|
authorize_resource
|
|
|
|
before_action :lookup_user
|
|
|
|
allow_thirdparty_images
|
|
end
|
|
end
|