appstore: set utmSource during user registration

This commit is contained in:
Girish Ramakrishnan
2022-05-18 23:30:30 -07:00
parent aa1e8dc930
commit 2596afa7b3
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -100,7 +100,7 @@ async function registerUser(email, password) {
assert.strictEqual(typeof password, 'string');
const [error, response] = await safe(superagent.post(`${settings.apiServerOrigin()}/api/v1/register_user`)
.send({ email, password })
.send({ email, password, utmSource: 'cloudron-dashboard' })
.timeout(30 * 1000)
.ok(() => true));