fix: remove unraid-api sso users & always apply sso modification on < 7.2 (#1595)

This commit is contained in:
Eli Bosley
2025-08-19 12:00:00 -04:00
committed by GitHub
parent effdbcf0f5
commit 426283011a
17 changed files with 29 additions and 937 deletions

View File

@@ -1,14 +0,0 @@
export interface SsoUserService {
/**
* Get the current list of SSO user IDs
* @returns Array of SSO user IDs
*/
getSsoUsers(): Promise<string[]>;
/**
* Set the complete list of SSO user IDs
* @param userIds - The list of SSO user IDs to set
* @returns true if a restart is required, false otherwise
*/
setSsoUsers(userIds: string[]): Promise<boolean>;
}