Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Migrator ¶
type Migrator struct { }
func (*Migrator) Migrate ¶
Migrate takes a ticktick export, parses it and imports everything in it into Vikunja. @Summary Import all projects, tasks etc. from a TickTick backup export @Description Imports all projects, tasks, notes, reminders, subtasks and files from a TickTick backup export into Vikunja. @tags migration @Accept x-www-form-urlencoded @Produce json @Security JWTKeyAuth @Param import formData string true "The TickTick backup csv file." @Success 200 {object} models.Message "A message telling you everything was migrated successfully." @Failure 500 {object} models.Message "Internal server error" @Router /migration/ticktick/migrate [post]
func (*Migrator) Name ¶
Name is used to get the name of the ticktick migration - we're using the docs here to annotate the status route. @Summary Get migration status @Description Returns if the current user already did the migation or not. This is useful to show a confirmation message in the frontend if the user is trying to do the same migration again. @tags migration @Produce json @Security JWTKeyAuth @Success 200 {object} migration.Status "The migration status" @Failure 500 {object} models.Message "Internal server error" @Router /migration/ticktick/status [get]