File tree Expand file tree Collapse file tree 3 files changed +13
-11
lines changed Expand file tree Collapse file tree 3 files changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -10,4 +10,7 @@ npm-debug.log
10
10
* .swp
11
11
.env
12
12
13
- .idea /
13
+ .idea /
14
+
15
+ npm-debug.log. *
16
+ /parse-dashboard-config.json
Original file line number Diff line number Diff line change @@ -168,14 +168,13 @@ export default class DashboardView extends React.Component {
168
168
link : '/settings/general'
169
169
} ) ;
170
170
}
171
- /*
172
- if (features.keysSettings) {
171
+ // if (features.keysSettings) {
173
172
settingsSections . push ( {
174
173
name : 'Security & Keys' ,
175
174
link : '/settings/keys'
176
175
} ) ;
177
- }
178
-
176
+ // }
177
+ /*
179
178
if (features.usersSettings) {
180
179
settingsSections.push({
181
180
name: 'Users',
Original file line number Diff line number Diff line change @@ -106,13 +106,13 @@ export default class SecuritySettings extends DashboardView {
106
106
label = { < Label text = 'Master key' description = 'Using this key overrides all permissions. Not usable on client SDKs. Keep it secret!' /> }
107
107
input = { < KeyField name = 'Master' hidden = { true } > { currentApp . masterKey } </ KeyField > } />
108
108
</ Fieldset >
109
- < Fieldset legend = 'Reset Master Key' description = 'Use this when your key has been compromised.' >
110
- < Field
111
- label = { < Label text = 'Reset master key' description = { < span > This will permanently reset the master < br /> key to a newly generated key.</ span > } /> }
112
- input = { < FormButton color = 'red' value = 'Reset Master Key' onClick = { ( ) => this . setState ( { showResetDialog : true } ) } /> } />
113
- </ Fieldset >
109
+ { /* <Fieldset legend='Reset Master Key' description='Use this when your key has been compromised.'>*/ }
110
+ { /* <Field*/ }
111
+ { /* label={<Label text='Reset master key' description={<span>This will permanently reset the master <br/>key to a newly generated key.</span>} />}*/ }
112
+ { /* input={<FormButton color='red' value='Reset Master Key' onClick={() => this.setState({ showResetDialog: true })} /> } />*/ }
113
+ { /* </Fieldset>*/ }
114
114
{ permissions }
115
- { resetDialog }
115
+ { /*{ resetDialog}*/ }
116
116
< Toolbar section = 'Settings' subsection = 'Security & Keys' />
117
117
</ div >
118
118
) ;
You can’t perform that action at this time.
0 commit comments