diff options
author | HombreLaser <sebastian-440@live.com> | 2023-03-10 19:21:00 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-03-10 19:21:00 -0600 |
commit | 8f04e87b466e79fa2086d69d9c49f5af89b68cb9 (patch) | |
tree | 4c779a2801b7359c9cb94da1492a9087f6788d75 /app/controllers/master_controller.rb | |
parent | f39235d865412d75625779a557a6c51736798dfa (diff) |
Añade CompaniesController
Diffstat (limited to 'app/controllers/master_controller.rb')
-rw-r--r-- | app/controllers/master_controller.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/controllers/master_controller.rb b/app/controllers/master_controller.rb new file mode 100644 index 0000000..b2075d5 --- /dev/null +++ b/app/controllers/master_controller.rb @@ -0,0 +1,14 @@ +# frozen_string_literal: true + +# The father class of all controllers that require the master role to fulfill requests. +class MasterController < AuthenticatedController + before_action :assert_master_role + + private + + def assert_master_role + return if current_user_account.role == 'master' + + render json: { error_message: 'No cuenta con los permisos necesarios' }, status: :forbidden + end +end |