-
-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable html in templates #241
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's remove some changes for cleaner diff
Cargo.toml
Outdated
mockito = "0.31" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's remove this change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should i remove this line from the code its in the new version of el_monitorro
Cargo.lock
Outdated
@@ -171,9 +171,9 @@ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" | |||
|
|||
[[package]] | |||
name = "cpufeatures" | |||
version = "0.2.3" | |||
version = "0.2.4" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's remove changes in this file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
its automatically genearating version = "0.2.4" when running the bot
.env
Outdated
@@ -2,4 +2,4 @@ TELEGRAM_BOT_TOKEN= # insert @BotFather token here | |||
DATABASE_POOL_SIZE=5 # must be 6 or less for free tier, 10+ for best performance | |||
RUST_BACKTRACE=1 | |||
RUST_LOG=info | |||
DATABASE_URL=postgres://postgres:postgres@localhost:5432/el_monitorro | |||
DATABASE_URL=postgres://postgres:postgres@localhost:5432/el_monitorro |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's remove changes in this file
.gitignore
Outdated
@@ -1 +1,2 @@ | |||
/target | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's remove this change
Co-authored-by: Ayrat Badykov <ayratin555@gmail.com>
* Enable html in templates (#241) Co-authored-by: Ayrat Badykov <ayratin555@gmail.com> * replace <3 with emoji Telegram can not recogize it * fix clippy Co-authored-by: athulkrishnaaei <athulkrishnakdgr@gmail.com>
added create_link helper
#98