Refactor app in to its own slice

This commit is contained in:
2024-02-17 10:40:36 +11:00
parent b809b132d3
commit a6078f882e
161 changed files with 16176 additions and 193 deletions

View File

@@ -33,6 +33,7 @@ module Adamantium
"syndication.mastodon",
"syndication.blue_sky",
"syndication.raindrop",
"view_cache.cacher",
"renderers.markdown"
]
end

View File

@@ -63,7 +63,7 @@ server {
# Now this supposedly should work as it gets the filenames with querystrings that Rails provides.
# BUT there's a chance it could break the ajax calls.
location ~* \.(ico|css|gif|jpe?g|png|js|ttf)(\?[0-9]+)?$ {
location ~* \.(ico|css|gif|jpe?g|png|js)(\?[0-9]+)?$ {
expires max;
break;
}

View File

@@ -6,59 +6,9 @@ module Adamantium
class Routes < Hanami::Routes
use Hanami::Middleware::BodyParser, [:form, :json]
slice :main, at: "/"
slice :admin, at: "/admin"
slice :micropub, at: "/micropub"
root to: "site.home"
get "/post/top_tracks/:slug", to: "posts.top_tracks"
get "/post/:slug", to: "posts.show"
get "/posts", to: "posts.index"
# get "/posts/archive", to: "posts.archive"
get "/posts/archive/:year", to: "posts.archive"
get "/bookmarks", to: "bookmarks.index"
get "/bookmarks/metadata/:id", to: "bookmarks.metadata"
get "/bookmark/:slug", to: "bookmarks.show"
get "/photos", to: "photos.index"
get "/places", to: "places.index"
get "/places/map", to: "places.map_page"
get "/statuses", to: "statuses.index"
get "/tags", to: "tags.index"
get "/tagged/:slug", to: "tags.show"
get "/key", to: "key.show" if Hanami.app.settings.micropub_pub_key
get "/feeds/rss", to: "feeds.rss"
get "/feeds/statuses_rss", to: "feeds.statuses_rss"
get "/more", to: "more.index"
get "/hikes", to: "workouts.index"
post "/workouts", to: "workouts.create"
get "/movies", to: "movies.index"
get "/blogroll", to: "blogroll.index"
get "/blogroll/list", to: "blogroll.list"
get "/blogroll/opml", to: "blogroll.opml"
get "/recently_played", to: "recently_played.index"
get "/:slug", to: "pages.show"
get "/trips", to: "trips.index"
get "/trips/:id", to: "trips.show"
get "/podcasts", to: "podcasts.index"
get "/bookshelf", to: "books.index"
get "/timemachine/:year/:month/:day", to: "timemachine.show"
redirect "deploying-a-hanami-app-to-fly-io", to: "/post/deploying-a-hanami-20-app-to-flyio"
redirect "deploying-a-hanami-app-to-fly-io/", to: "/post/deploying-a-hanami-20-app-to-flyio"
slice :admin, at: "/admin"
end
end