Skip to content

Commit 826bba0

Browse files
authored
Merge branch 'master' into releases-view
2 parents 2018536 + 80cd24c commit 826bba0

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hawk.api",
3-
"version": "1.2.6",
3+
"version": "1.2.7",
44
"main": "index.ts",
55
"license": "BUSL-1.1",
66
"scripts": {

src/resolvers/user.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ export default {
6565
priority: TaskPriorities.IMPORTANT,
6666
});
6767

68-
telegram.sendMessage(`🚶 User "${email}" signed up`);
68+
const source = user.utm?.source;
69+
70+
telegram.sendMessage(`🚶 User "${email}" signed up` + (source ? `, from ${source}` : ''));
6971

7072
return isE2E ? password : true;
7173
} catch (e) {

src/typeDefs/workspace.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,11 @@ export default gql`
122122
""" True if workspace is blocked """
123123
isBlocked: Boolean
124124
125+
"""
126+
For prepaid workspaces, date until which the workspace is paid
127+
"""
128+
paidUntil: DateTime
129+
125130
"""
126131
Workspace projects array
127132
"""

0 commit comments

Comments
 (0)