Commit 7a10bf01 by Peter Holmberg

revert file name change

parent 12a63b60
import { DashboardAcl } from './acl';
export interface DashboardState {
permissions: DashboardAcl[];
}
...@@ -3,7 +3,7 @@ import { AlertRuleDTO, AlertRule, AlertRulesState } from './alerting'; ...@@ -3,7 +3,7 @@ import { AlertRuleDTO, AlertRule, AlertRulesState } from './alerting';
import { LocationState, LocationUpdate, UrlQueryMap, UrlQueryValue } from './location'; import { LocationState, LocationUpdate, UrlQueryMap, UrlQueryValue } from './location';
import { NavModel, NavModelItem, NavIndex } from './navModel'; import { NavModel, NavModelItem, NavIndex } from './navModel';
import { FolderDTO, FolderState, FolderInfo } from './folders'; import { FolderDTO, FolderState, FolderInfo } from './folders';
import { DashboardSearchHit, DashboardState } from './dashboardSearchHit'; import { DashboardState } from './dashboard';
import { DashboardAcl, OrgRole, PermissionLevel } from './acl'; import { DashboardAcl, OrgRole, PermissionLevel } from './acl';
import { ApiKey, ApiKeysState, NewApiKey } from './apiKeys'; import { ApiKey, ApiKeysState, NewApiKey } from './apiKeys';
import { Invitee, OrgUser, User, UsersState } from './user'; import { Invitee, OrgUser, User, UsersState } from './user';
...@@ -29,6 +29,7 @@ import { ...@@ -29,6 +29,7 @@ import {
AppNotificationsState, AppNotificationsState,
AppNotificationTimeout, AppNotificationTimeout,
} from './appNotifications'; } from './appNotifications';
import { DashboardSearchHit } from './search';
export { export {
Team, Team,
......
import { DashboardSearchHit } from './dashboardSearchHit'; import { DashboardSearchHit } from './search';
export interface Organization { export interface Organization {
name: string; name: string;
......
import { DashboardAcl } from './acl';
export interface DashboardSearchHit { export interface DashboardSearchHit {
id: number; id: number;
tags: string[]; tags: string[];
...@@ -9,7 +7,3 @@ export interface DashboardSearchHit { ...@@ -9,7 +7,3 @@ export interface DashboardSearchHit {
uri: string; uri: string;
url: string; url: string;
} }
export interface DashboardState {
permissions: DashboardAcl[];
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment