Skip to content

Commit a2c6efe

Browse files
committed
merge master
2 parents ad01c8f + 487a5a3 commit a2c6efe

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v16.16.0
1+
v22.12.0

docker/Dockerfile.dev

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16-alpine as builder
1+
FROM node:22-alpine as builder
22

33
WORKDIR /usr/src/app
44
RUN apk add --no-cache git gcc g++ python3 make musl-dev
@@ -7,7 +7,7 @@ COPY package.json yarn.lock ./
77

88
RUN yarn install
99

10-
FROM node:16-alpine
10+
FROM node:22-alpine
1111

1212
WORKDIR /usr/src/app
1313

docker/Dockerfile.prod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16-alpine as builder
1+
FROM node:22-alpine as builder
22

33
WORKDIR /usr/src/app
44
RUN apk add --no-cache git gcc g++ python3 make musl-dev
@@ -11,7 +11,7 @@ COPY . .
1111

1212
RUN yarn build
1313

14-
FROM node:16-alpine
14+
FROM node:22-alpine
1515

1616
WORKDIR /usr/src/app
1717

src/billing/cloudpayments.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ export default class CloudPaymentsWebhooks {
202202
return;
203203
}
204204

205-
telegram.sendMessage(` [Billing / Check] All checks passed successfully «${workspace.name}»`, TelegramBotURLs.Money)
205+
telegram.sendMessage(`🤗 [Billing / Check] All checks passed successfully «${workspace.name}»`, TelegramBotURLs.Money)
206206
.catch(e => console.error('Error while sending message to Telegram: ' + e));
207207

208208
HawkCatcher.send(new Error('[Billing / Check] All checks passed successfully'), body as any);

src/resolvers/billingNew.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ export default {
156156
* Send info to Telegram (non-blocking)
157157
*/
158158
telegram
159-
.sendMessage(` [Billing / Compose payment]
159+
.sendMessage(`👀 [Billing / Compose payment]
160160
161161
card link operation: ${isCardLinkOperation}
162162
amount: ${+plan.monthlyCharge} RUB

0 commit comments

Comments
 (0)