Members -> Users

This commit is contained in:
Jori Lallo
2018-03-04 22:34:06 -08:00
parent 7ef3110a6d
commit 71270bcb93
6 changed files with 55 additions and 64 deletions

View File

@@ -3,7 +3,7 @@ import React from 'react';
import { Provider } from 'mobx-react';
import stores from 'stores';
import ApiKeysStore from 'stores/ApiKeysStore';
import MemberSettingsStore from 'stores/MemberSettingsStore';
import UsersStore from 'stores/UsersStore';
import DocumentsStore from 'stores/DocumentsStore';
import CollectionsStore from 'stores/CollectionsStore';
import CacheStore from 'stores/CacheStore';
@@ -24,7 +24,7 @@ const Auth = ({ children }: Props) => {
const cache = new CacheStore(user.id);
authenticatedStores = {
apiKeys: new ApiKeysStore(),
memberSettings: new MemberSettingsStore(),
users: new UsersStore(),
documents: new DocumentsStore({
ui: stores.ui,
cache,