-
Notifications
You must be signed in to change notification settings - Fork 5
Description
Is your feature request related to a problem? Please describe.
We need to build out the feature to let moderators of organization edit the organization and control whose in the organization
We need to build out the tags tab if the user is an admin for a tag.
Figma Design
Organization Tabs
-
Submitted Tab
-
You should be using the ArticleList component,
components/global/ArticleList.tsxto display all of the articles that need to be reviewed. -
You should use the
{{APIURL}}/api/organizations/{{organizationSlug}}/articles/{{articleSlug}}call to reject or accept the article for the organization.
-
Member Tab
-
You should use the UserList component from
components/global/UserList.tsxto implement the user list -
You can use the
{{APIURL}}/api/organizations/{{organizationSlug}}/membersroute to remove a member from an organization
-
Settings Tab
-
You should be creating a component called
GroupSetting. Before this check if the person who has issue Tags tab in User dashboard #89 if they completed this component. If they have use it. If not then create your own. -
If mod setting is public, then send 1, if the mod setting is moderated, then send 2, and if the mod setting is private, then send 3.
-
The
{{APIURL}}/api/organizations/{{organizationSlug}}(PUT) will be used to update an organization.
Tag Tabs
-
Submitted Tab
-
You should be using the ArticleList component,
components/global/ArticleList.tsxto display all of the articles that need to be reviewed. -
You should use the
{{APIURL}}/api/tags/{{tagSlug}}/articles/{{articleSlug}}call to reject or accept the article for the tag.
-
Published Tab
-
You should be using the ArticleList component,
components/global/ArticleList.tsxto display all of the articles that need to be reviewed. -
You should use the
{{APIURL}}/api/tags/{{tagSlug}}/articles/{{articleSlug}}(PUT) call to reject the article for the tag.
-
Settings Tab
-
You should probably make a component called
GroupSettingssince this can be reused for organization settings as well. -
You should be using the
{{APIURL}}/api/tags/{{tagSlug}}(POST) call to update the tag. -
If mod setting is public, then send 1, if the mod setting is moderated, then send 2, and if the mod setting is private, then send 3.





