Skip to content

Commit

Permalink
fix: remove incomplete delegates management
Browse files Browse the repository at this point in the history
Refs: SHELL-214 (#419)
Co-authored-by: Beatrice Guerra <[email protected]>
  • Loading branch information
gnekoz and beawar authored Jun 12, 2024
1 parent e31d003 commit 44072bb
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 662 deletions.
14 changes: 7 additions & 7 deletions api-extractor/carbonio-shell-ui.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1680,13 +1680,13 @@ interface ZimletProp {
// lib/store/context-bridge.d.ts:5:5 - (ae-forgotten-export) The symbol "AnyFunction" needs to be exported by the entry point lib.d.ts
// lib/store/integrations/store.d.ts:26:9 - (ae-forgotten-export) The symbol "Action_2" needs to be exported by the entry point lib.d.ts
// lib/store/integrations/store.d.ts:32:9 - (ae-forgotten-export) The symbol "Component" needs to be exported by the entry point lib.d.ts
// lib/types/account/index.d.ts:35:5 - (ae-forgotten-export) The symbol "AccountRights" needs to be exported by the entry point lib.d.ts
// lib/types/account/index.d.ts:39:5 - (ae-forgotten-export) The symbol "StringOfLength" needs to be exported by the entry point lib.d.ts
// lib/types/account/index.d.ts:84:5 - (ae-forgotten-export) The symbol "AccountSettingsAttrs" needs to be exported by the entry point lib.d.ts
// lib/types/account/index.d.ts:86:5 - (ae-forgotten-export) The symbol "ZimletProp" needs to be exported by the entry point lib.d.ts
// lib/types/account/index.d.ts:130:5 - (ae-forgotten-export) The symbol "AccountRightTargetEmail" needs to be exported by the entry point lib.d.ts
// lib/types/account/index.d.ts:135:9 - (ae-forgotten-export) The symbol "AccountRightName" needs to be exported by the entry point lib.d.ts
// lib/types/account/index.d.ts:136:9 - (ae-forgotten-export) The symbol "AccountRightTarget" needs to be exported by the entry point lib.d.ts
// lib/types/account/index.d.ts:33:5 - (ae-forgotten-export) The symbol "AccountRights" needs to be exported by the entry point lib.d.ts
// lib/types/account/index.d.ts:37:5 - (ae-forgotten-export) The symbol "StringOfLength" needs to be exported by the entry point lib.d.ts
// lib/types/account/index.d.ts:82:5 - (ae-forgotten-export) The symbol "AccountSettingsAttrs" needs to be exported by the entry point lib.d.ts
// lib/types/account/index.d.ts:84:5 - (ae-forgotten-export) The symbol "ZimletProp" needs to be exported by the entry point lib.d.ts
// lib/types/account/index.d.ts:128:5 - (ae-forgotten-export) The symbol "AccountRightTargetEmail" needs to be exported by the entry point lib.d.ts
// lib/types/account/index.d.ts:133:9 - (ae-forgotten-export) The symbol "AccountRightName" needs to be exported by the entry point lib.d.ts
// lib/types/account/index.d.ts:134:9 - (ae-forgotten-export) The symbol "AccountRightTarget" needs to be exported by the entry point lib.d.ts
// lib/types/apps/index.d.ts:68:5 - (ae-forgotten-export) The symbol "PanelMode" needs to be exported by the entry point lib.d.ts
// lib/types/misc/index.d.ts:85:9 - (ae-forgotten-export) The symbol "SoapPolicy" needs to be exported by the entry point lib.d.ts
// lib/types/misc/index.d.ts:104:5 - (ae-forgotten-export) The symbol "FolderView" needs to be exported by the entry point lib.d.ts
Expand Down
2 changes: 0 additions & 2 deletions src/mocks/handlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,13 @@ import { type RequestHandler, http, HttpResponse } from 'msw';
import { getComponentsJson } from './handlers/components';
import { endSessionRequest } from './handlers/endSessionRequest';
import { getInfoRequest } from './handlers/getInfoRequest';
import { getRightsRequest } from './handlers/getRightsRequest';
import { getLoginConfig } from './handlers/login-config';
import { logout } from './handlers/logout';
import { LOGIN_V3_CONFIG_PATH } from '../constants';

const handlers: RequestHandler[] = [
http.get('/static/iris/components.json', getComponentsJson),
http.post('/service/soap/GetInfoRequest', getInfoRequest),
http.post('/service/soap/GetRightsRequest', getRightsRequest),
http.post('/service/soap/EndSessionRequest', endSessionRequest),
http.get(LOGIN_V3_CONFIG_PATH, getLoginConfig),
http.get('/i18n/en.json', () => HttpResponse.json({})),
Expand Down
35 changes: 0 additions & 35 deletions src/mocks/handlers/getRightsRequest.ts

This file was deleted.

Loading

0 comments on commit 44072bb

Please sign in to comment.