mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
10 lines
283 B
TypeScript
10 lines
283 B
TypeScript
import {User} from "../../common/entities/User";
|
|
export class UserManager {
|
|
|
|
private static DummyUser = new User("TestUser","test@test.hu","122345");
|
|
|
|
public static findOne(filter,cb:(error: any,result:User) => void){
|
|
return cb(null, UserManager.DummyUser);
|
|
}
|
|
|
|
} |