mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-11 08:07:15 +00:00
fix: improve scim handling of renames on azure
This commit is contained in:
@@ -148,6 +148,7 @@
|
||||
class="text-red-500 whitespace-nowrap"
|
||||
on:click={() => {
|
||||
deleteConfirmedCallback = async () => {
|
||||
console.log(email)
|
||||
await UserService.globalUserDelete({ email })
|
||||
sendUserToast(`User ${email} removed`)
|
||||
listUsers()
|
||||
|
||||
@@ -1,6 +1,17 @@
|
||||
const aCharCode = 'a'.charCodeAt(0)
|
||||
|
||||
export const forbiddenIds: string[] = ['do', 'bg', 'ctx', 'state', 'if', 'else', 'for']
|
||||
export const forbiddenIds: string[] = [
|
||||
'do',
|
||||
'bg',
|
||||
'ctx',
|
||||
'state',
|
||||
'if',
|
||||
'else',
|
||||
'for',
|
||||
'delete',
|
||||
'while',
|
||||
'new'
|
||||
]
|
||||
|
||||
export function numberToChars(n: number) {
|
||||
if (n < 0) {
|
||||
|
||||
Reference in New Issue
Block a user