Skip to content

Commit

Permalink
[IMP] Explicit GET method
Browse files Browse the repository at this point in the history
  • Loading branch information
c8y3 committed Oct 11, 2024
1 parent 939c97b commit f2ca43b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
manage_customers_rest_blueprint = Blueprint('manage_customers_rest', __name__)


@manage_customers_rest_blueprint.route('/manage/customers/list')
@manage_customers_rest_blueprint.route('/manage/customers/list', methods=['GET'])
@ac_api_requires(Permissions.customers_read)
def list_customers():
user_is_server_administrator = ac_current_user_has_permission(Permissions.server_administrator)
Expand Down

0 comments on commit f2ca43b

Please sign in to comment.