Add admin tool to handle duplicate artist names (#480)

This commit is contained in:
Mike Colagrosso 2025-03-06 13:28:26 -07:00 committed by GitHub
parent 576fcea0b1
commit a91509726c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 261 additions and 2 deletions

View file

@ -0,0 +1,4 @@
RewriteRule ^/artists/(.+?)/delete$ /artists/delete.php?artist-url-name=$1 [L]
RewriteCond expr "tolower(%{REQUEST_METHOD}) =~ /^post$/"
RewriteRule ^/artists/([^/\.]+)$ /artists/post.php?artist-url-name=$1 [L]

View file

@ -202,6 +202,7 @@ Define conf_rewrite_root ${web_root}/config/apache/rewrites
Include ${conf_rewrite_root}/feeds.conf
Include ${conf_rewrite_root}/ebooks.conf
Include ${conf_rewrite_root}/newsletters.conf
Include ${conf_rewrite_root}/artists.conf
Include ${conf_rewrite_root}/artworks.conf
Include ${conf_rewrite_root}/polls.conf
Include ${conf_rewrite_root}/users.conf