forked from wlmac/metropolis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
66 changed files
with
1,157 additions
and
853 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# ruff: noqa: F403 | ||
from .announcement import * | ||
from .blogpost import * | ||
from .course import * | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,6 @@ def get_gravatar_url(obj): | |
return gravatar_url(obj.email) | ||
|
||
class Meta: | ||
|
||
model = User | ||
fields = [ | ||
"id", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,28 @@ | ||
from .announcement import * | ||
from .blog_post import * | ||
from .courses import * | ||
from .event import * | ||
from .exhibit import * | ||
from .flatpage import * | ||
from .organization import * | ||
from .post_interactions import * | ||
from .tag import * | ||
from .term import * | ||
from .timetable import * | ||
from .user import * | ||
from .announcement import AnnouncementProvider | ||
from .blog_post import BlogPostProvider | ||
from .courses import CourseProvider | ||
from .event import EventProvider | ||
from .exhibit import ExhibitProvider | ||
from .flatpage import FlatPageProvider | ||
from .organization import OrganizationProvider | ||
from .post_interactions import CommentProvider, LikeProvider | ||
from .tag import TagProvider | ||
from .term import TermProvider | ||
from .timetable import TimetableProvider | ||
from .user import UserProvider | ||
|
||
__all__ = [ | ||
"AnnouncementProvider", | ||
"BlogPostProvider", | ||
"CourseProvider", | ||
"EventProvider", | ||
"ExhibitProvider", | ||
"OrganizationProvider", | ||
"TagProvider", | ||
"TermProvider", | ||
"TimetableProvider", | ||
"UserProvider", | ||
"CommentProvider", | ||
"LikeProvider", | ||
"FlatPageProvider", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.