summaryrefslogtreecommitdiff
path: root/app/controllers/master_controller.rb
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-03-11 12:10:57 -0600
committerHombreLaser <sebastian-440@live.com>2023-03-11 12:10:57 -0600
commit3dae1ce143d006cc75940b746a8eb74982e6e861 (patch)
tree5bfa59dfd11bbfc9b8ef2a38da067e0c2ca0da42 /app/controllers/master_controller.rb
parent6b3cc5c3a33643c0e42396142a2d3204ada2bb82 (diff)
Añade test de scoping
Diffstat (limited to 'app/controllers/master_controller.rb')
-rw-r--r--app/controllers/master_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/master_controller.rb b/app/controllers/master_controller.rb
index b2075d5..38cd441 100644
--- a/app/controllers/master_controller.rb
+++ b/app/controllers/master_controller.rb
@@ -7,7 +7,7 @@ class MasterController < AuthenticatedController
private
def assert_master_role
- return if current_user_account.role == 'master'
+ return if current_user_role == 'master'
render json: { error_message: 'No cuenta con los permisos necesarios' }, status: :forbidden
end