MCPcopy Create free account
hub / github.com/Datakitpage/Datakit / joinWaitlist

Method joinWaitlist

frontend/src/lib/api/userService.ts:112–120  ·  view source on GitHub ↗
(
    email: string,
    featureName: string
  )

Source from the content-addressed store, hash-verified

110 }
111
112 async joinWaitlist(
113 email: string,
114 featureName: string
115 ): Promise<{ message: string }> {
116 return apiClient.post('/waitlist/signup', {
117 email,
118 featureName,
119 });
120 }
121
122 async getMyWaitlistEntries(): Promise<any[]> {
123 return apiClient.get('/waitlist/my-entries');

Callers 1

handleWaitlistSignupFunction · 0.80

Calls 1

postMethod · 0.80

Tested by

no test coverage detected