-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
📝 feat: update club models #911
Conversation
…ansactions soc clean up
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fantastic! I think my big comment is about extensibility. I think a club should have a many recruiting objects.
Each recruiting object is a certain set of people theyre recruiting like software engineers vs designers vs things that are external like clubs like generate have applications for clients but you're not becoming a member from it.
@@ -0,0 +1,180 @@ | |||
package leadership |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if we're switching to leadership as a term, we should also remove the term "poc" so lID instead of pocID and etc
|
||
type CreatePointOfContactBody struct { | ||
type CreateLeaderBody struct { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit but should this be leadership instead of leader? leader implies something different
Name string `json:"name" validate:"required,max=255"` | ||
Email string `json:"email" validate:"required,email,max=255"` | ||
Position string `json:"position" validate:"required,max=255"` | ||
} | ||
|
||
type UpdatePointOfContactBody struct { | ||
type UpdateLeaderBody struct { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above and anytime the term leader is used over leadership
@DOOduneye what i went with was Leadership is the plural of Leader |
prior to merge