Поправил ссылки в InitSettingFlow

This commit is contained in:
Struchkov Mark 2023-02-26 13:57:26 +03:00
parent 690b39797f
commit 25cf9915cc
Signed by: upagge
GPG Key ID: D3018BE7BA428CA6

View File

@ -104,11 +104,14 @@ public class InitSettingFlow implements UnitConfiguration {
*How it works* *How it works*
Every few minutes I poll the Gitlab API using your token. I get information about repositories, merge requests in them, trades, pipelines, and other stuff. Some of the information I save to my database. This allows me to track changes and create notifications about them. All of the data is stored with you and is not shared anywhere. I also try to remove data that is not needed for work, such as closed merge requests. Every few minutes I poll the Gitlab API using your token. I get information about repositories, merge requests in them, trades, pipelines, and other stuff. Some of the information I save to my database. This allows me to track changes and create notifications about them. All of the data is stored with you and is not shared anywhere. I also try to remove data that is not needed for work, such as closed merge requests.
[read more...](http://0.0.0.0:8000/gitlab-notification/ru/latest/architecture/concept/)
🥷*Privacy* 🥷*Privacy*
Some data may be very sensitive to send to the Telegram servers. For example, discussions in the Merge Requests threads. During setup, you will be able to select the privacy level of different types of notifications. The higher the level, the less sensitive data will be in the notification. Some data may be very sensitive to send to the Telegram servers. For example, discussions in the Merge Requests threads. During setup, you will be able to select the privacy level of different types of notifications. The higher the level, the less sensitive data will be in the notification.
[read more...](https://docs.struchkov.dev/gitlab-notification/ru/latest/privacy/)
-- -- -- -- -- -- -- -- -- --
🏠 [Home Page](https://git.struchkov.dev/Telegram-Bots/gitlab-notification) 🐛 [Issues](https://github.com/uPagge/gitlab-notification/issues) 🛣 [Road Map](https://git.struchkov.dev/Telegram-Bots/gitlab-notification/issues) 🏠 [Docs](https://docs.struchkov.dev/gitlab-notification/) 🐛 [Issues](https://github.com/uPagge/gitlab-notification/issues) 🆘 [Donation](https://docs.struchkov.dev/gitlab-notification/ru/latest/support-development/)
-- -- -- -- -- -- -- -- -- --
👇Press start to start initial setup 👇 👇Press start to start initial setup 👇
""" """
@ -535,12 +538,15 @@ public class InitSettingFlow implements UnitConfiguration {
mail -> { mail -> {
settingService.turnOnAllNotify(); settingService.turnOnAllNotify();
settingService.disableFirstStart(); settingService.disableFirstStart();
return replaceBoxAnswer(""" return BoxAnswer.builder()
Configuration completed successfully .message(
Developer: [uPagge](https://mark.struchkov.dev) """
""", Configuration completed successfully
inlineKeyBoard(simpleButton("Open General Menu", "/start")) Developer: [Struchkov.Dev](https://mark.struchkov.dev)
); """
).keyBoard(inlineKeyBoard(simpleButton("Open Menu", "/start")))
.payload(DISABLE_WEB_PAGE_PREVIEW, true)
.build();
} }
) )
.build(); .build();