Skip to content

Commit 237015b

Browse files
committed
feat(plugins/auth): move user functions to seperate folder
1 parent 3354865 commit 237015b

11 files changed

+4
-2
lines changed

plugins/auth/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import user from './user';
1+
import { user } from './methods';
22

33
export * from './helpers';
4-
export * from './user';
4+
export * from './methods/user';
55
export default {
66
user,
77
};

plugins/auth/methods/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export { default as user } from './user';
2+
export { default as credentials } from './credentials';
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)