You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add gui settings field for sso users (#1310)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit
- **New Features**
- Bulk SSO account management is now supported, allowing users to update
multiple SSO account IDs at once.
- Connect settings now include SSO account identifiers for streamlined
configuration.
- Expanded array management functionality introduces advanced operations
for managing disk arrays.
- New fields for SSO user IDs have been added to various settings and
queries.
- **Style & Documentation**
- Improved formatting and support for rich HTML in form descriptions
enhance clarity and presentation.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
---------
Co-authored-by: Eli Bosley <[email protected]>
@@ -151,6 +180,7 @@ export class ConnectSettingsService {
151
180
awaitthis.remoteAccessSlice(),
152
181
awaitthis.sandboxSlice(),
153
182
this.flashBackupSlice(),
183
+
this.ssoUsersSlice(),
154
184
// Because CORS is effectively disabled, this setting is no longer necessary
155
185
// keeping it here for in case it needs to be re-enabled
156
186
//
@@ -344,4 +374,32 @@ export class ConnectSettingsService {
344
374
],
345
375
};
346
376
}
377
+
378
+
/**
379
+
* Extra origins settings slice
380
+
*/
381
+
ssoUsersSlice(): SettingSlice{
382
+
return{
383
+
properties: {
384
+
ssoUserIds: {
385
+
type: 'array',
386
+
items: {
387
+
type: 'string',
388
+
},
389
+
title: 'Unraid API SSO Users',
390
+
description: `Provide a list of Unique Unraid Account ID's. Find yours at <a href="https://account.unraid.net/settings" target="_blank">account.unraid.net/settings</a>`,
Copy file name to clipboardExpand all lines: web/composables/gql/gql.ts
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -14,8 +14,8 @@ import type { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-
14
14
* Learn more about it here: https://the-guild.dev/graphql/codegen/plugins/presets/preset-client#reducing-bundle-size
0 commit comments