diff options
| author | ckonstanski <kostcarl@isu.edu> | 2026-07-15 16:14:42 -0600 |
|---|---|---|
| committer | ckonstanski <kostcarl@isu.edu> | 2026-07-15 16:14:42 -0600 |
| commit | 4d12ff855d9f440b2f00b683804b3323e1a8625a (patch) | |
| tree | 1e8fb6256f1136823f0e8d4c288ef814f98f7e51 /lisp/webapps/bogenherr/site.lisp | |
| parent | 3291eac5051fdfde7d916fe969b2b439bdcbeda7 (diff) | |
added software consulting
Diffstat (limited to 'lisp/webapps/bogenherr/site.lisp')
| -rw-r--r-- | lisp/webapps/bogenherr/site.lisp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lisp/webapps/bogenherr/site.lisp b/lisp/webapps/bogenherr/site.lisp index 223ac27..b47b9d4 100644 --- a/lisp/webapps/bogenherr/site.lisp +++ b/lisp/webapps/bogenherr/site.lisp @@ -95,6 +95,18 @@ (defmacro .gigs-modify-submit () `(about-us-modify-submit-json "gigs" content)) +(defmacro .programming () + `(about-us-json "programming")) + +(defmacro .programming-view () + `(about-us-view-json "programming")) + +(defmacro .programming-modify () + `(about-us-modify-json "programming")) + +(defmacro .programming-modify-submit () + `(about-us-modify-submit-json "programming" content)) + (defmacro .gallery () `(gallery-json)) @@ -206,6 +218,10 @@ (define-endpoint ("/gigs/view" :method :get) () .gigs-view) (define-endpoint ("/gigs/modify" :method :post) () .gigs-modify) (define-endpoint ("/gigs/modify/submit" :method :post) (&post (content :parameter-type 'string)) .gigs-modify-submit) +(define-endpoint ("/programming" :method :get) () .programming) +(define-endpoint ("/programming/view" :method :get) () .programming-view) +(define-endpoint ("/programming/modify" :method :post) () .programming-modify) +(define-endpoint ("/programming/modify/submit" :method :post) (&post (content :parameter-type 'string)) .programming-modify-submit) (define-endpoint ("/gallery" :method :get) () .gallery) (define-endpoint ("/gallery/view" :method :get) () .gallery-view) (define-endpoint ("/gallery/add" :method :post) () .gallery-add) |
