[Enhancement] Add option to use existing Media Profile as template for new profile (#466)
* Add option to use existing Media Profile as template for new profile * Forgot to commit the edit form too * Reset deletion mark on Source controller * Add test for new preload profile feature * mix check
This commit is contained in:
@@ -79,6 +79,15 @@ defmodule PinchflatWeb.MediaProfileControllerTest do
|
||||
|
||||
refute html_response(conn, 200) =~ "MENU"
|
||||
end
|
||||
|
||||
test "preloads some attributes when using a template", %{conn: conn} do
|
||||
profile = media_profile_fixture(name: "My first profile", download_subs: true, sub_langs: "de")
|
||||
|
||||
conn = get(conn, ~p"/media_profiles/new", %{"template_id" => profile.id})
|
||||
assert html_response(conn, 200) =~ "New Media Profile"
|
||||
assert html_response(conn, 200) =~ profile.sub_langs
|
||||
refute html_response(conn, 200) =~ profile.name
|
||||
end
|
||||
end
|
||||
|
||||
describe "edit media_profile" do
|
||||
|
||||
Reference in New Issue
Block a user