// SPDX-FileCopyrightText: 2024 John Livingston
//
// SPDX-License-Identifier: AGPL-3.0-only
import { html } from 'lit'
import { repeat } from 'lit/directives/repeat.js'
import { __ } from 'i18n'
export default function tplMucTaskLists (el, tasklists) {
if (!tasklists) { // if user losed rights
return html`` // FIXME: add a message like "you dont have access"?
}
const i18nAdd = __('Add')
// eslint-disable-next-line no-undef
const i18nCreateTaskList = __(LOC_task_list_create)
// eslint-disable-next-line no-undef
const i18nTaskListName = __(LOC_task_list_name)
return html`
${
repeat(tasklists, (tasklist) => tasklist.get('id'), (tasklist) => {
return html``
})
}
`
}