Skip to content

Commit

Permalink
fixing jwt requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
hrauniya committed May 6, 2024
1 parent 660edb0 commit 5b33005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/routes/agencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class AddOfficerListSchema(BaseModel):

# Create agency profile
@bp.route("/", methods=["POST"])
@jwt_required
@jwt_required()
@min_role_required(UserRole.CONTRIBUTOR)
@validate(json=CreateAgencySchema)
def create_agency():
Expand Down

0 comments on commit 5b33005

Please sign in to comment.