Merge branch 'develop' into standalone_develop

This commit is contained in:
2023-12-11 09:15:29 +08:00
5 changed files with 68 additions and 5 deletions

View File

@@ -102,8 +102,9 @@ defaults format: :json do
end
match 'branches/*name', to: "branches#destroy", via: :all
resources :tags, param: :name, only: [:index, :destroy]
match 'tags/*name', to: "tags#destroy", via: :all
resources :tags, param: :name, only: [:index, :show, :destroy]
delete 'tags/*name', to: "tags#destroy", via: :all
get 'tags/*name', to: "tags#show", via: :all
resources :commits, only: [:index]
resources :code_stats, only: [:index]