mirror of
https://github.com/StepanovPlaton/torrent_frontend.git
synced 2026-04-03 20:30:48 +04:00
Add registration and data caching
This commit is contained in:
@@ -1,16 +1,28 @@
|
||||
import {
|
||||
loginFormSchema,
|
||||
loginFormFieldNames,
|
||||
LoginForm,
|
||||
} from "./schemas/auth";
|
||||
LoginFormType,
|
||||
} from "./schemas/login";
|
||||
|
||||
import {
|
||||
registrationFormSchema,
|
||||
registrationFormFieldNames,
|
||||
RegistrationFormType,
|
||||
RegistrationFormFields,
|
||||
} from "./schemas/registration";
|
||||
|
||||
import { userSchema, User } from "./schemas/user";
|
||||
import { UserService } from "./user";
|
||||
|
||||
export {
|
||||
loginFormSchema,
|
||||
loginFormFieldNames,
|
||||
registrationFormSchema,
|
||||
registrationFormFieldNames,
|
||||
UserService,
|
||||
userSchema,
|
||||
type User,
|
||||
type LoginForm,
|
||||
type LoginFormType,
|
||||
type RegistrationFormType,
|
||||
type RegistrationFormFields,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user