Skip to content

Commit

Permalink
flake test update
Browse files Browse the repository at this point in the history
  • Loading branch information
hexwhiz committed Oct 25, 2024
1 parent fe343a2 commit c409977
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion home/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,13 @@ def filter_by_difficulty(request, difficulty_level=None):

return render(request, 'dashboard/index.html', context=context)


@complete_profile_required
def filter_by_status(request, status=None):
"""
Filter the issues on basis of their open or close status.
params: selected filter option
return:
return:
"""
issues_qs = Issue.objects.all()
project_qs = Project.objects.all()
Expand Down Expand Up @@ -169,6 +170,7 @@ def filter_by_status(request, status=None):

return render(request, 'dashboard/index.html', context=context)


def authorize(request):
"""
Used for rendering authorize.html which is responsible for both LogIn and SignUp
Expand Down

0 comments on commit c409977

Please sign in to comment.