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

aggiunta comando syllabus #275

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 7 additions & 0 deletions data/markdown/syllabus.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
*Informatica*
Triennale https://web.dmi.unict.it/corsi/l-31/programmi
Magistrale https://web.dmi.unict.it/corsi/lm-18/programmi

*Matematica*
Triennale https://web.dmi.unict.it/corsi/l-35/programmi
Magistrale https://web.dmi.unict.it/corsi/lm-40/programmi
4 changes: 3 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ def add_commands(up: Updater) -> None:
BotCommand("cloud", "risorse didattiche in cloud"),
BotCommand("regolamentodidattico", "lista dei regolamenti didattici"),
BotCommand("ricevimenti", "lista orari ricevimenti dei professori"),
BotCommand("trasporto_urbano_unict", "link orari Metro Shuttle FCE"),
BotCommand("syllabus", "lista e informazioni pe rogni materia di ogni corso di laurea"),
BotCommand("trasporto_urbano_unict", "link orari BRTU"),
campofilippo98 marked this conversation as resolved.
Show resolved Hide resolved
BotCommand("dmi_3d", "mappa in 3D del DMI"),
BotCommand("mercatino", "bot per la vendita e l'acquisto di libri"),
BotCommand("faq", "mostra le domande chieste più frequentemente"),
Expand Down Expand Up @@ -99,6 +100,7 @@ def add_handlers(dp: Dispatcher) -> None:
dp.add_handler(CommandHandler('gruppi', informative_callback))
dp.add_handler(CommandHandler('cus', informative_callback))
dp.add_handler(CommandHandler('ricevimenti', informative_callback))
dp.add_handler(CommandHandler('syllabus', informative_callback))
dp.add_handler(CommandHandler('trasporto_urbano_unict', informative_callback))
dp.add_handler(CommandHandler('dmi_3d', informative_callback))
dp.add_handler(CommandHandler('faq', informative_callback))
Expand Down
Loading