mirror of
https://github.com/portainer/portainer.git
synced 2025-07-21 22:39:41 +02:00
refactor(namespace): migrate namespace access view to react [r8s-141] (#87)
This commit is contained in:
parent
8ed7cd80cb
commit
e9fc6d5598
62 changed files with 1018 additions and 610 deletions
|
@ -0,0 +1,19 @@
|
|||
import { object, array, string, number, SchemaOf, mixed } from 'yup';
|
||||
|
||||
import { CreateAccessValues } from './types';
|
||||
|
||||
export function validationSchema(): SchemaOf<CreateAccessValues> {
|
||||
return object().shape({
|
||||
selectedUsersAndTeams: array(
|
||||
object().shape({
|
||||
type: mixed().oneOf(['team', 'user']).required(),
|
||||
name: string().required(),
|
||||
id: number().required(),
|
||||
role: object().shape({
|
||||
id: number().required(),
|
||||
name: string().required(),
|
||||
}),
|
||||
})
|
||||
).min(1),
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue