Skip to content
Snippets Groups Projects
Commit d145edcd authored by Agate's avatar Agate 💬
Browse files

Merge branch '1154-itunes-email' into 'develop'

Fix #1154: Support for specifying itunes:email and itunes:name in channels for...

Closes #1154

See merge request funkwhale/funkwhale!1139
parents 77f2bff9 0da1f1e3
No related branches found
No related tags found
No related merge requests found
Support for specifying itunes:email and itunes:name in channels for compatibiliy with third-party platforms (#1154)
......@@ -120,6 +120,31 @@
</select>
</div>
</div>
<div class="ui two fields" v-if="newValues.content_category === 'podcast'">
<div class="ui field">
<label for="channel-itunes-email">
<translate translate-context="*/*/*">Owner email</translate>
</label>
<input
name="channel-itunes-email"
id="channel-itunes-email"
type="email"
v-model="newValues.metadata.owner_email">
</div>
<div class="ui field">
<label for="channel-itunes-name">
<translate translate-context="*/*/*">Owner name</translate>
</label>
<input
name="channel-itunes-name"
id="channel-itunes-name"
maxlength="255"
v-model="newValues.metadata.owner_name">
</div>
</div>
<p>
<translate translate-context="*/*/*">Used for the itunes:email and itunes:name field required by certain platforms such as Spotify or iTunes.</translate>
</p>
</template>
</template>
<div v-else class="ui active inverted dimmer">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment