summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/controllers/roles_controller.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/controllers/roles_controller.rb b/app/controllers/roles_controller.rb
index 07745023d..750046ea0 100644
--- a/app/controllers/roles_controller.rb
+++ b/app/controllers/roles_controller.rb
@@ -30,13 +30,13 @@ class RolesController < ApplicationController
def index
respond_to do |format|
- format.html {
+ format.html do
@roles = Role.sorted.to_a
render :layout => false if request.xhr?
- }
- format.api {
+ end
+ format.api do
@roles = Role.givable.to_a
- }
+ end
end
end
@@ -79,10 +79,10 @@ class RolesController < ApplicationController
@role.safe_attributes = params[:role]
if @role.save
respond_to do |format|
- format.html {
+ format.html do
flash[:notice] = l(:notice_successful_update)
redirect_to roles_path(:page => params[:page])
- }
+ end
format.js { head 200 }
end
else