Skip to content
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

🍰 Feature: Comnand edit #9

Merged
merged 37 commits into from
Mar 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
9de9bbf
build: add rusqlite, ignore db
DmitroPodolsky Feb 15, 2024
21f875b
feat: db creation
DmitroPodolsky Feb 15, 2024
301915c
build: add thiserror, dotenv, update teloxide
DmitroPodolsky Feb 15, 2024
d51249b
chore: format code
nezutero Feb 16, 2024
a4b7cd0
chore: add *.db to .gitignore
nezutero Feb 16, 2024
018ffd5
chore: update license and remove unused modules
nezutero Feb 16, 2024
d099cc2
test: add DB tests
nezutero Feb 16, 2024
8194640
chore: correct table name, update license, remove unused code
nezutero Feb 16, 2024
2628e71
refactor: change bot architecture
DmitroPodolsky Feb 15, 2024
4c24be6
feat: implement: commands /add, /cancel, /help, pagination pages, val…
DmitroPodolsky Feb 18, 2024
aed21d2
chore: delete unused modules
nezutero Feb 19, 2024
dc4af6a
refactor: rename basic_methods.rs -> commands.rs, format && refactor …
nezutero Feb 19, 2024
2698267
refactor: rename commands.rs -> handler.rs, format && refactor code
nezutero Feb 19, 2024
b148dec
chore: format code
nezutero Feb 19, 2024
523c67b
chore: add handler to mod.rs
nezutero Feb 19, 2024
9d065f7
chore: format code, fix category misspellings
nezutero Feb 19, 2024
22c7235
chore: format code, update imports
nezutero Feb 19, 2024
0b88c55
refactor: format code, improve code brevity, fix category misspelling…
nezutero Feb 19, 2024
d74dc98
chore: remove empty else statement
nezutero Feb 19, 2024
407dc6b
feat: ci-cd
nezutero Feb 21, 2024
9df13ed
feat: create utils.rs
nezutero Feb 21, 2024
a3b4437
chore: format code, include new command
nezutero Feb 21, 2024
7497e22
chore: format code
nezutero Feb 21, 2024
c8522a1
chore: add error handling to create_db fn
nezutero Feb 21, 2024
8da8532
refactor: db module, add tests
nezutero Feb 21, 2024
48715a9
refactor: commands.rs
nezutero Feb 21, 2024
33998cd
Merge pull request #7 from seadclub/chore/cleanup
DmitroPodolsky Feb 23, 2024
43d2377
refactor: moved utils to telegram
DmitroPodolsky Feb 24, 2024
56fa30a
feat: add folder commands with <command>.rs
DmitroPodolsky Feb 24, 2024
fd45b32
fix: change logic of imports + bug
DmitroPodolsky Feb 24, 2024
4a8e77a
feat(Edit): add new command + states
DmitroPodolsky Mar 3, 2024
3776285
feat(Edit): add update/select funcs
DmitroPodolsky Mar 3, 2024
25e64a3
feat(Edit): add States/Command States
DmitroPodolsky Mar 3, 2024
a3116d6
feat(Edit): add register handlers
DmitroPodolsky Mar 3, 2024
b8e3962
fix(Error): prevent actionj if task already exist
DmitroPodolsky Mar 3, 2024
8b965d9
feat(Edit)
DmitroPodolsky Mar 3, 2024
551170b
feat(Edit): add inline keyboard func
DmitroPodolsky Mar 3, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Rust

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: HH
run: cargo build --release
- name: Tests
run: cargo test --all
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@
*.exe
.cargo/
*.bak
*.db
Loading
Loading