diff options
author | Antoine GIRARD <sapk@users.noreply.github.com> | 2019-08-14 08:16:12 +0200 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2019-08-14 14:16:12 +0800 |
commit | 46d6b92ad04df87560ee12dfee58a5e8222e52ff (patch) | |
tree | 55d7a5ebf3292b79af4eca564f4bdc3f353f58e8 /docs | |
parent | 99a004c343ff0770af4e209ca4634b83f153a23c (diff) | |
download | gitea-46d6b92ad04df87560ee12dfee58a5e8222e52ff.tar.gz gitea-46d6b92ad04df87560ee12dfee58a5e8222e52ff.zip |
Import topics during migration (#7851)
* add GetTopics interface
* CreateTopics
* remove un-needed comment
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/advanced/migrations.en-us.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/content/doc/advanced/migrations.en-us.md b/docs/content/doc/advanced/migrations.en-us.md index 7db9cad817..2511f7af89 100644 --- a/docs/content/doc/advanced/migrations.en-us.md +++ b/docs/content/doc/advanced/migrations.en-us.md @@ -34,6 +34,7 @@ create a Downloader. ```Go type Downloader interface { GetRepoInfo() (*Repository, error) + GetTopics() ([]string, error) GetMilestones() ([]*Milestone, error) GetReleases() ([]*Release, error) GetLabels() ([]*Label, error) |