projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Update bundle
[rails.git]
/
app
/
controllers
/
elements_controller.rb
1
class ElementsController < ApplicationController
2
layout :map_layout
3
4
before_action :authorize_web
5
before_action :set_locale
6
before_action -> { check_database_readable(:need_api => true) }
7
before_action :require_oauth
8
9
authorize_resource
10
11
around_action :web_timeout
12
end