mirror of
https://github.com/portainer/portainer.git
synced 2025-07-25 00:09:40 +02:00
refactor(azure/aci): migrate create view to react [EE-2188] (#6371)
This commit is contained in:
parent
1bb02eea59
commit
6f6f78fbe5
53 changed files with 1476 additions and 571 deletions
|
@ -2,6 +2,8 @@ import { rest } from 'msw';
|
|||
|
||||
import { createMockTeams, createMockUsers } from '../react-tools/test-mocks';
|
||||
|
||||
import { azureHandlers } from './setup-handlers/azure';
|
||||
|
||||
export const handlers = [
|
||||
rest.get('/api/teams', async (req, res, ctx) =>
|
||||
res(ctx.json(createMockTeams(10)))
|
||||
|
@ -9,4 +11,5 @@ export const handlers = [
|
|||
rest.get('/api/users', async (req, res, ctx) =>
|
||||
res(ctx.json(createMockUsers(10)))
|
||||
),
|
||||
...azureHandlers,
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue