You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The models have already been implemented, and the REST API just uses the default view and serializer logic. However, when other parts of the app need to manage clubs/members, they should be able to use easy to under stand interfaces/methods.
The service has already been laid out in app/clubs/services.py, with the method names and short docstrings already added in. This task mainly just involves using the models already created to perform the actions described by the doc strings and the method names.
Task
get_registration_link
Return link to sign up page with query string ?club={club_name}, this will need to be set up in the urls file
register_member
Creates a new membership object
increase_member_coins
decrease_member_coins
record_member_attendance
Creates a new EventAttendance object
create_event
create_recurring_event
The text was updated successfully, but these errors were encountered:
@MarcoDelcas Sounds good, let me know if you need help with anything. I'll update the CONTRIBUTING.md docs at some point, but the way most ppl contribute is by "forking" the repo to their own account, "cloning" it down to their local machine, making the changes, "pushing" the changes back up to their fork, then creating a "pull request" - or PR.
Info
The models have already been implemented, and the REST API just uses the default view and serializer logic. However, when other parts of the app need to manage clubs/members, they should be able to use easy to under stand interfaces/methods.
The service has already been laid out in
app/clubs/services.py
, with the method names and short docstrings already added in. This task mainly just involves using the models already created to perform the actions described by the doc strings and the method names.Task
?club={club_name}
, this will need to be set up in the urls fileThe text was updated successfully, but these errors were encountered: