Skip to content

Commit b89e74e

Browse files
committed
feat(telegram): add telegram config
1 parent bf308aa commit b89e74e

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,6 @@ VITE_APP_NAME="${APP_NAME}"
6868
MELLI_SMS_USERNAME=
6969
MELLI_SMS_PASSWORD=
7070
MELLI_SMS_FROM=
71+
72+
TELEGRAM_BOT_TOKEN=
73+
TELEGRAM_CHANNEL_ID=

config/telegram.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?php
2+
3+
return [
4+
'token' => env('TELEGRAM_BOT_TOKEN'),
5+
'id' => env('TELEGRAM_CHANNEL_ID'),
6+
];

0 commit comments

Comments
 (0)