from django.urls import path from apps.billboard import views app_name = "billboard" urlpatterns = [ path("", views.billboard, name="billboard"), path("toggle-applets", views.toggle_billboard_applets, name="toggle_applets"), path("my-notes/", views.my_notes, name="my_notes"), path("note//set-palette", views.note_set_palette, name="note_set_palette"), path("note//don", views.don_title, name="don_title"), path("note//doff", views.doff_title, name="doff_title"), path("room//scroll/", views.scroll, name="scroll"), path("room//scroll-position/", views.save_scroll_position, name="save_scroll_position"), # Post/Line CRUD (relocated from apps.dashboard.urls) path("new-post", views.new_post, name="new_post"), path("post//", views.view_post, name="view_post"), path("post//share-post", views.share_post, name="share_post"), path("users//", views.my_posts, name="my_posts"), path("my-buds/", views.my_buds, name="my_buds"), path("buds/add", views.add_bud, name="add_bud"), ]