Skip to content

Commit

Permalink
Added WikiService
Browse files Browse the repository at this point in the history
  • Loading branch information
theriverman committed May 18, 2020
1 parent 9b5fa1c commit 2033530
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
2 changes: 2 additions & 0 deletions client.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ type Client struct {
UserStory *UserStoryService
User *UserService
Webhook *WebhookService
Wiki *WikiService
}

// TODO: Pack Taiga operations into services, such as, ProjectService, EpicService, MilestoneService, etc...
Expand Down Expand Up @@ -129,6 +130,7 @@ func (c *Client) Initialise(credentials *Credentials) error {
c.UserStory = &UserStoryService{c}
c.User = &UserService{c}
c.Webhook = &WebhookService{c}
c.Wiki = &WikiService{c}

user, err := c.Auth.login(credentials)
if err != nil {
Expand Down
14 changes: 0 additions & 14 deletions wiki_pages.go

This file was deleted.

0 comments on commit 2033530

Please sign in to comment.