Farmbot-Web-App/frontend/__test_support__/user.ts

24 lines
579 B
TypeScript
Raw Normal View History

2019-07-01 10:43:03 -06:00
import { User } from "farmbot/dist/resources/api_resources";
2018-08-01 07:03:35 -06:00
import { TaggedUser, SpecialStatus } from "farmbot";
2017-08-04 15:41:15 -06:00
export const user: User = {
2017-08-04 15:41:15 -06:00
created_at: "2016-10-05T03:02:58.000Z",
email: "farmbot1@farmbot.io",
id: 2,
name: "FarmBot 1",
updated_at: "2017-08-04T19:53:29.724Z"
};
export const taggedUser: TaggedUser = {
2017-10-27 07:31:25 -06:00
kind: "User",
2017-08-04 15:41:15 -06:00
uuid: "1234-5678",
specialStatus: SpecialStatus.SAVED,
2017-08-04 15:41:15 -06:00
body: {
created_at: "2016-10-05T03:02:58.000Z",
email: "farmbot1@farmbot.io",
id: 2,
name: "FarmBot 1",
updated_at: "2017-08-04T19:53:29.724Z"
}
};