Поправил ссылки в InitSettingFlow
This commit is contained in:
parent
690b39797f
commit
25cf9915cc
@ -104,11 +104,14 @@ public class InitSettingFlow implements UnitConfiguration {
|
||||
|
||||
❓*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.
|
||||
[read more...](http://0.0.0.0:8000/gitlab-notification/ru/latest/architecture/concept/)
|
||||
|
||||
🥷*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.
|
||||
[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 👇
|
||||
"""
|
||||
@ -535,12 +538,15 @@ public class InitSettingFlow implements UnitConfiguration {
|
||||
mail -> {
|
||||
settingService.turnOnAllNotify();
|
||||
settingService.disableFirstStart();
|
||||
return replaceBoxAnswer("""
|
||||
return BoxAnswer.builder()
|
||||
.message(
|
||||
"""
|
||||
Configuration completed successfully
|
||||
Developer: [uPagge](https://mark.struchkov.dev)
|
||||
""",
|
||||
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();
|
||||
|
Loading…
Reference in New Issue
Block a user