You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
355 B

class Gitea {
constructor(url, user, pass) { // Nextcloud's base URL, not the api!
this.api = `${url}/index.php/apps/deck/api/v1.0`
this.user = user
this.pass = pass
}
checkTagExist() {
}
createTag() {
}
checkCardExist() {
}
createCard(board, card, title, tags) {
}
closeCard() {
}
deleteCard() {
}
}