favs scans backfill job

This commit is contained in:
Dylan Knutson
2025-06-27 20:27:59 +00:00
parent c74cbfe4e0
commit 5ebd924780
79 changed files with 2219 additions and 777 deletions

View File

@@ -33,6 +33,18 @@ Rails.application.routes.draw do
get "followed_by", on: :member, action: :followed_by
get "following", on: :member, action: :following
resources :job_events, only: [], controller: "domain/user_job_events" do
get "tracked_objects",
on: :collection,
action: :tracked_objects_kinds,
as: :tracked_objects_kinds
get "tracked_objects/:kind",
on: :collection,
action: :tracked_objects,
as: :tracked_objects
end
resources :posts, only: [], controller: "domain/posts", path: "" do
get :favorites, on: :collection, action: :user_favorite_posts
get :posts, on: :collection, action: :user_created_posts