Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

[DEV] Member management #102

Merged
merged 21 commits into from
Feb 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
d2d728a
Added new route. Added links to MyTeams page and MyTeamsDetails page.
mbaghel Feb 9, 2021
eb6bb17
finished presentation of manage access page
mbaghel Feb 11, 2021
a24384a
Created base modal and used to style add modal and delete modals
mbaghel Feb 12, 2021
8a1ab18
delete modal working for members
mbaghel Feb 12, 2021
2c06f11
working delete modal, formatted code
mbaghel Feb 12, 2021
cd15a8d
working suggestions and reactselect element
mbaghel Feb 13, 2021
830ff4a
able to add invites to project
mbaghel Feb 13, 2021
886757d
Merge pull request #99 from mbaghel/feature/member-management
maxceem Feb 17, 2021
194af0f
Merge branch 'dev' into feature/member-management
maxceem Feb 17, 2021
721b19f
Merge branch 'dev' into feature/member-management
maxceem Feb 17, 2021
be7ec0d
chore: remove not used package
maxceem Feb 17, 2021
c8645ba
Removed previous issue reporting logic. Added static Report Popup com…
mbaghel Feb 18, 2021
82cbbc6
Added Report Popup component to MyTeamsList and MyTeamsDetails pages.
mbaghel Feb 18, 2021
8665339
added postreport service
mbaghel Feb 18, 2021
0e354a4
Merge branch 'mbaghel/report-issue' into feature/member-management
mbaghel Feb 18, 2021
9dbc0ed
Extracted loading spinner from delete modal to its own component. Fin…
mbaghel Feb 18, 2021
e5403a6
Documentation and cleanup
mbaghel Feb 18, 2021
1e18101
Removed leftover console log. Reset textarea on close popup
mbaghel Feb 18, 2021
4b02817
Change request: Fixed typo in data for issue reporting. Only display …
mbaghel Feb 20, 2021
241083d
Merge pull request #104 from mbaghel/feature/member-management
maxceem Feb 20, 2021
14bb09a
Merge branch 'dev' into feature/member-management
maxceem Feb 20, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions config/dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,13 @@ module.exports = {
*/
CONNECT_WEBSITE_URL: "https://connect.topcoder-dev.com",

/**
* Email to report issues to
*/
EMAIL_REPORT_ISSUE: "[email protected]",

/**
* Email to request extension
*/
EMAIL_REQUEST_EXTENSION: "[email protected]",

API: {
V5: "https://api.topcoder-dev.com/v5",
V3: "https://api.topcoder-dev.com/v3",
},
};
6 changes: 1 addition & 5 deletions config/prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,13 @@ module.exports = {
*/
CONNECT_WEBSITE_URL: "https://connect.topcoder.com",

/**
* Email to report issues to
*/
EMAIL_REPORT_ISSUE: "[email protected]",

/**
* Email to request extension
*/
EMAIL_REQUEST_EXTENSION: "[email protected]",

API: {
V5: "https://api.topcoder.com/v5",
V3: "https://api.topcoder.com/v3",
},
};
2 changes: 1 addition & 1 deletion docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '3'
version: "3"
services:
taas-app:
image: taas-app:latest
Expand Down
Loading