This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Tom Moor e2b28dfeb7
refactor: Policies Architecture (#1016)
* add policy serialize method

* Add policies to collection responses

* wip

* test: remove .only

* refactor: Return policies with team and document requests

* store policies on the client

* refactor: drive admin UI from policies
2019-08-21 21:41:37 -07:00

31 lines
822 B
JavaScript

// @flow
import presentUser from './user';
import presentView from './view';
import presentDocument from './document';
import presentEvent from './event';
import presentRevision from './revision';
import presentCollection from './collection';
import presentApiKey from './apiKey';
import presentShare from './share';
import presentTeam from './team';
import presentIntegration from './integration';
import presentNotificationSetting from './notificationSetting';
import presentSlackAttachment from './slackAttachment';
import presentPolicies from './policy';
export {
presentUser,
presentView,
presentDocument,
presentEvent,
presentRevision,
presentCollection,
presentApiKey,
presentShare,
presentTeam,
presentIntegration,
presentNotificationSetting,
presentSlackAttachment,
presentPolicies,
};