|
|
@ -1,11 +1,9 @@ |
|
|
import Authorized from './Authorized'; |
|
|
import Authorized from './Authorized'; |
|
|
import AuthorizedRoute from './AuthorizedRoute'; |
|
|
|
|
|
import Secured from './Secured'; |
|
|
import Secured from './Secured'; |
|
|
import check from './CheckPermissions'; |
|
|
import check from './CheckPermissions'; |
|
|
import renderAuthorize from './renderAuthorize'; |
|
|
import renderAuthorize from './renderAuthorize'; |
|
|
|
|
|
|
|
|
Authorized.Secured = Secured; |
|
|
Authorized.Secured = Secured; |
|
|
Authorized.AuthorizedRoute = AuthorizedRoute; |
|
|
|
|
|
Authorized.check = check; |
|
|
Authorized.check = check; |
|
|
|
|
|
|
|
|
const RenderAuthorize = renderAuthorize(Authorized); |
|
|
const RenderAuthorize = renderAuthorize(Authorized); |
|
|
|