projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Include changeset with node instead of loading it while rendering
[rails.git]
/
app
/
controllers
/
messages
/
mailboxes_controller.rb
1
module Messages
2
class MailboxesController < ApplicationController
3
layout "site"
4
5
before_action :authorize_web
6
before_action :set_locale
7
8
authorize_resource :class => Message
9
10
before_action :check_database_readable
11
end
12
end