projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge remote-tracking branch 'upstream/pull/5987'
[rails.git]
/
app
/
controllers
/
users
/
comments_controller.rb
1
module Users
2
class CommentsController < ApplicationController
3
include UserMethods
4
include PaginationMethods
5
6
layout "site"
7
8
before_action :authorize_web
9
before_action :set_locale
10
before_action :check_database_readable
11
12
authorize_resource
13
14
before_action :lookup_user
15
16
allow_thirdparty_images
17
end
18
end