1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/backend/model/UserManager.ts

10 lines
283 B
TypeScript
Raw Normal View History

2016-03-19 04:36:58 +08:00
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);
}
}