Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
B
Backend Server
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
SpinShare
Backend Server
Commits
1473d3dc
Commit
1473d3dc
authored
Nov 29, 2020
by
Andreas Heimann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed the requirement to always upload a new cover when editing playlists
parent
058e1316
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/Controller/PlaylistController.php
src/Controller/PlaylistController.php
+1
-1
No files found.
src/Controller/PlaylistController.php
View file @
1473d3dc
...
...
@@ -126,7 +126,7 @@ class PlaylistController extends AbstractController
$form
=
$this
->
createFormBuilder
()
->
add
(
'title'
,
TextType
::
class
,
[
'label'
=>
'Title'
,
'data'
=>
$playlist
->
getTitle
(),
'row_attr'
=>
array
(
'class'
=>
'tags-field'
),
'required'
=>
true
])
->
add
(
'description'
,
TextareaType
::
class
,
[
'label'
=>
'Description'
,
'data'
=>
$playlist
->
getDescription
(),
'attr'
=>
array
(
'rows'
=>
5
),
'row_attr'
=>
array
(
'class'
=>
'tags-field'
),
'required'
=>
false
])
->
add
(
'coverPath'
,
FileType
::
class
,
[
'label'
=>
'Cover Image'
,
'row_attr'
=>
array
(
'class'
=>
'upload-field'
),
'attr'
=>
array
(
'accept'
=>
'.png, .jpg, .jpeg'
)])
->
add
(
'coverPath'
,
FileType
::
class
,
[
'label'
=>
'Cover Image'
,
'row_attr'
=>
array
(
'class'
=>
'upload-field'
),
'attr'
=>
array
(
'accept'
=>
'.png, .jpg, .jpeg'
)
,
'required'
=>
false
])
->
add
(
'save'
,
SubmitType
::
class
,
[
'label'
=>
'Save'
])
->
getForm
();
$form
->
handleRequest
(
$request
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment