revert file name change

This commit is contained in:
Peter Holmberg
2018-10-30 09:45:47 +01:00
parent 12a63b605f
commit 7a10bf0141
4 changed files with 8 additions and 8 deletions
+5
View File
@@ -0,0 +1,5 @@
import { DashboardAcl } from './acl';
export interface DashboardState {
permissions: DashboardAcl[];
}
+2 -1
View File
@@ -3,7 +3,7 @@ import { AlertRuleDTO, AlertRule, AlertRulesState } from './alerting';
import { LocationState, LocationUpdate, UrlQueryMap, UrlQueryValue } from './location';
import { NavModel, NavModelItem, NavIndex } from './navModel';
import { FolderDTO, FolderState, FolderInfo } from './folders';
import { DashboardSearchHit, DashboardState } from './dashboardSearchHit';
import { DashboardState } from './dashboard';
import { DashboardAcl, OrgRole, PermissionLevel } from './acl';
import { ApiKey, ApiKeysState, NewApiKey } from './apiKeys';
import { Invitee, OrgUser, User, UsersState } from './user';
@@ -29,6 +29,7 @@ import {
AppNotificationsState,
AppNotificationTimeout,
} from './appNotifications';
import { DashboardSearchHit } from './search';
export {
Team,
+1 -1
View File
@@ -1,4 +1,4 @@
import { DashboardSearchHit } from './dashboardSearchHit';
import { DashboardSearchHit } from './search';
export interface Organization {
name: string;
@@ -1,5 +1,3 @@
import { DashboardAcl } from './acl';
export interface DashboardSearchHit {
id: number;
tags: string[];
@@ -9,7 +7,3 @@ export interface DashboardSearchHit {
uri: string;
url: string;
}
export interface DashboardState {
permissions: DashboardAcl[];
}