Preventing site default design being deleted.
This commit is contained in:
parent
71fc85c24e
commit
cfb65dd056
|
@ -94,7 +94,12 @@ class Admin::DesignsController < OrbitBackendController
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
@design = Design.find(params[:id])
|
@design = Design.find(params[:id])
|
||||||
|
if @site.design == @design
|
||||||
|
flash[:error] = "Failed! You can not delete a design that used by default "
|
||||||
|
else
|
||||||
@design.destroy
|
@design.destroy
|
||||||
|
flash[:notice] = "Successfully deleted design."
|
||||||
|
end
|
||||||
redirect_to admin_designs_url
|
redirect_to admin_designs_url
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue