mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-28 01:10:54 +01:00
* feat: add integration access settings * fix: typecheck and test issues * fix: test timeout * chore: address pull request feedback * chore: add throw if action forbidden for integration permissions * fix: unable to create new migrations because of duplicate prevId in sqlite snapshots * chore: add sqlite migration for integration permissions * test: add unit tests for integration access * test: add permission checks to integration router tests * test: add unit test for integration permissions * chore: add mysql migration * fix: format issues
13 lines
367 B
TypeScript
13 lines
367 B
TypeScript
import { createFormContext } from "@homarr/form";
|
|
|
|
export interface AccessFormType<TPermission extends string> {
|
|
items: {
|
|
principalId: string;
|
|
permission: TPermission;
|
|
}[];
|
|
}
|
|
|
|
export const [FormProvider, useFormContext, useForm] = createFormContext<AccessFormType<string>>();
|
|
|
|
export type HandleCountChange = (callback: (prev: number) => number) => void;
|