Use same lock values as mobile clients
[ProtonMail-WebClient.git] / packages / shared / lib / api / simpleLogin.ts
blob7b654b30c0ce78bfae4f30109e9987f30869e6aa
1 export const getSLAccountLinked = () => ({
2     method: 'get',
3     url: 'simple_login/v1/user',
4 });
6 export const getSLSubscription = () => ({
7     method: 'get',
8     url: 'simple_login/v1/subscription',
9 });
11 export const createSLUser = (Redirect?: 'browser_extension' | 'home') => ({
12     method: 'post',
13     url: 'simple_login/v1/user',
14     data: { Redirect },
15 });