Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/yukitya-1811/corpus into main
Browse files Browse the repository at this point in the history
  • Loading branch information
yukitya-1811 committed Mar 13, 2024
2 parents 0ee74d1 + b04c662 commit d514b78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion corpus/accounts/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class ExecutiveMember(models.Model):
)

profile_picture = models.ImageField(
blank=True, null=True, upload_to="execmember/profile_picture"
blank=True, null=True, upload_to="accounts/executivemember/profile_picture"
)
# TODO: Phase out with GitHub OAuth details
github = models.CharField(
Expand Down
2 changes: 1 addition & 1 deletion corpus/pages/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
path("", views.index, name="index"),
path("about_us/", views.about_us, name="about_us"),
path("sig/<str:sig_name>/", views.sig, name="sig"),
path("team", views.team, name="team"),
path("team/", views.team, name="team"),
]

0 comments on commit d514b78

Please sign in to comment.