Add heartbeat download (#457)

This commit is contained in:
Jeffrey Wang
2025-08-07 15:36:36 -04:00
committed by GitHub
parent 07ed54abfc
commit cfe9f813b9
5 changed files with 297 additions and 1 deletions

View File

@@ -107,9 +107,14 @@ Rails.application.routes.draw do
post "my/settings/migrate_heartbeats", to: "users#migrate_heartbeats", as: :my_settings_migrate_heartbeats
namespace :my do
resources :project_repo_mappings, param: :project_name, only: [ :edit, :update ], constraints: { project_name: /.+/ }
resources :project_repo_mappings, param: :project_name, only: [ :edit, :update ], constraints: { project_name: /.+/ }
resource :mailing_address, only: [ :show, :edit ]
get "mailroom", to: "mailroom#index"
resources :heartbeats, only: [] do
collection do
get :export
end
end
end
get "my/wakatime_setup", to: "users#wakatime_setup"