chore: remove admin series-management stub actions
This commit is contained in:
parent
2c834da40a
commit
e0d11e47f4
1 changed files with 0 additions and 16 deletions
|
|
@ -112,7 +112,6 @@
|
|||
<button @click="manageSeriesTickets(series)" class="link-btn">Ticketing</button>
|
||||
<button @click="editSeries(series)" class="link-btn">Edit</button>
|
||||
<button @click="addEventToSeries(series)" class="link-btn">Add Event</button>
|
||||
<button @click="duplicateSeries(series)" class="link-btn">Duplicate</button>
|
||||
<button @click="deleteSeries(series)" class="link-btn link-btn-danger">Delete</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -171,14 +170,6 @@
|
|||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="section-label">Series Management Tools</div>
|
||||
<button @click="reorderAllSeries" class="btn bulk-action">
|
||||
<strong>Auto-Reorder Series</strong>
|
||||
<span>Fix position numbers based on event dates</span>
|
||||
</button>
|
||||
<button @click="validateAllSeries" class="btn bulk-action">
|
||||
<strong>Validate Series Data</strong>
|
||||
<span>Check for consistency issues</span>
|
||||
</button>
|
||||
<button @click="exportSeriesData" class="btn bulk-action">
|
||||
<strong>Export Series Data</strong>
|
||||
<span>Download series information as JSON</span>
|
||||
|
|
@ -575,10 +566,6 @@ const addEventToSeries = (series) => {
|
|||
navigateTo('/admin/events/create?series=true')
|
||||
}
|
||||
|
||||
const duplicateSeries = () => {
|
||||
// TODO: Implement
|
||||
}
|
||||
|
||||
const editSeries = (series) => {
|
||||
editingSeriesId.value = series.id
|
||||
editingSeriesData.value = {
|
||||
|
|
@ -696,9 +683,6 @@ const saveTicketsEdit = async () => {
|
|||
}
|
||||
}
|
||||
|
||||
const reorderAllSeries = () => { /* TODO */ }
|
||||
const validateAllSeries = () => { /* TODO */ }
|
||||
|
||||
const exportSeriesData = () => {
|
||||
const dataStr = JSON.stringify(activeSeries.value, null, 2)
|
||||
const dataBlob = new Blob([dataStr], { type: 'application/json' })
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue