Convert imports to relative paths (#13740)
parent
0665caab86
commit
ed092fbe49
@ -1,3 +1,3 @@ |
||||
import { AuthzCachedCollection } from '/app/models'; |
||||
import { AuthzCachedCollection } from '../../../models'; |
||||
|
||||
export const ChatPermissions = AuthzCachedCollection.collection; |
||||
|
||||
@ -1,3 +1,3 @@ |
||||
import { Roles } from '/app/models'; |
||||
import { Roles } from '../../../models'; |
||||
|
||||
export const getRoles = () => Roles.find().fetch(); |
||||
|
||||
@ -1,4 +1,4 @@ |
||||
import { Roles } from '/app/models'; |
||||
import { Roles } from '../../../models'; |
||||
|
||||
export const getUsersInRole = (roleName, scope, options) => Roles.findUsersInRole(roleName, scope, options); |
||||
|
||||
|
||||
@ -1,3 +1,3 @@ |
||||
import { Logger } from '/app/logger'; |
||||
import { Logger } from '../../logger'; |
||||
|
||||
export const logger = new Logger('Blockstack'); |
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue