Add admin interface for the links

This commit is contained in:
Patrick Gansterer 2019-11-04 03:52:07 +01:00
parent 7657b05787
commit 1053b3883d
11 changed files with 142 additions and 0 deletions

View file

@ -4,6 +4,10 @@ Rails.application.routes.draw do
resources :links, only: [:show]
namespace :admin do
resources :links
end
end
end