Skip to content

Commit c8ea7d0

Browse files
committed
Merge branch 'dev' of github.com:topcoder-platform/platform-ui into feat/review
2 parents b3b1a0d + 750aafe commit c8ea7d0

File tree

363 files changed

+5913
-2735
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

363 files changed

+5913
-2735
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,8 @@ workflows:
222222
- LVT-256
223223
- CORE-635
224224
- feat/review
225+
- feat/system-admin
226+
- pm-1365_1
225227

226228
- deployQa:
227229
context: org-global
@@ -240,4 +242,4 @@ workflows:
240242
filters: &filters-prod
241243
branches:
242244
only:
243-
- master
245+
- master

README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,6 @@ The following summarizes the various [apps](#adding-a-new-platform-ui-applicatio
556556
- [Gamification Admin](#gamification-admin)
557557
- [Learn](#learn)
558558
- [Self Service](#self-service)
559-
- [Review](#review)
560559
561560
## Platform App
562561
@@ -600,10 +599,3 @@ Application that allows customers to submit/start challenges self-service.
600599
601600
[Work README TBD](./src/apps/self-service/README.md)
602601
[Work Routes](./src/apps/self-service/src/self-service.routes.tsx)
603-
604-
## Review
605-
606-
The application that allows managing the review submissions.
607-
608-
[Review README TBD](./src/apps/review/README.md)
609-
[Review Routes](./src/apps/review/src/review-app.routes.tsx)

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"dev": "craco start --mode ${LOGICAL_ENV:-dev}",
88
"start": "bash start.sh",
9-
"build": "export CI=false && craco build --mode ${LOGICAL_ENV:-prod}",
9+
"build": "rimraf ./build && export CI=false && craco build --mode ${LOGICAL_ENV:-prod}",
1010
"build:dev": "craco build --mode ${LOGICAL_ENV:-dev}",
1111
"demo": "npx http-server --port 443 -a 0.0.0.0 -S -C ./ssl/rootCA.crt -K ./ssl/rootCA.key -P https://local.topcoder-dev.com? --proxy-options.secure false ./build",
1212
"lint": "eslint -c ./src/.eslintrc.js 'src/**/*.{ts,tsx,js,jsx}'",
@@ -108,7 +108,7 @@
108108
"tc-auth-lib": "topcoder-platform/tc-auth-lib#1.0.27",
109109
"typescript": "^4.8.4",
110110
"universal-navigation": "https://github.com/topcoder-platform/universal-navigation#9fc50d938be7182",
111-
"uuid": "^9.0.0",
111+
"uuid": "^11.1.0",
112112
"yup": "^1.6.1"
113113
},
114114
"devDependencies": {
@@ -194,6 +194,7 @@
194194
"react-docgen-typescript": "^2.2.2",
195195
"react-hot-loader": "^4.3.3",
196196
"resolve-url-loader": "^5.0.0",
197+
"rimraf": "^6.0.1",
197198
"sass-loader": "^13.3.3",
198199
"serve": "^14.0.1",
199200
"start-server-and-test": "^1.14.0",

src/apps/accounts/src/settings/tabs/account/AccountTab.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { FC } from 'react'
33
import { UserProfile, UserTraits } from '~/libs/core'
44

55
import { AccountRole } from './account-role'
6-
import { SecuritySection } from './security'
76
import { UserAndPassword } from './user-and-pass'
87
import { MemberAddress } from './address'
98
import styles from './AccountTab.module.scss'
@@ -15,15 +14,13 @@ interface AccountTabProps {
1514

1615
const AccountTab: FC<AccountTabProps> = (props: AccountTabProps) => (
1716
<div className={styles.container}>
18-
<h3>ACCOUNT INFORMATION & SECURITY</h3>
17+
<h3>ACCOUNT INFORMATION</h3>
1918

2019
<AccountRole profile={props.profile} />
2120

2221
<UserAndPassword profile={props.profile} memberTraits={props.memberTraits} />
2322

2423
<MemberAddress profile={props.profile} />
25-
26-
<SecuritySection profile={props.profile} />
2724
</div>
2825
)
2926

src/apps/accounts/src/settings/tabs/account/security/Security.module.scss

Lines changed: 0 additions & 43 deletions
This file was deleted.

src/apps/accounts/src/settings/tabs/account/security/Security.tsx

Lines changed: 0 additions & 143 deletions
This file was deleted.

src/apps/accounts/src/settings/tabs/account/security/dice-setup-modal/ConnectionHandler/index.tsx

Lines changed: 0 additions & 24 deletions
This file was deleted.

src/apps/accounts/src/settings/tabs/account/security/dice-setup-modal/DiceSetupModal.module.scss

Lines changed: 0 additions & 68 deletions
This file was deleted.

0 commit comments

Comments
 (0)