feat(column): move, edit and delete project columns (#1497)

Add support to move, edit and delete project columns.
This commit is contained in:
Florent Clarret
2020-05-05 15:50:28 +10:00
committed by GitHub
parent a1ed7c0e2d
commit a32a896599
9 changed files with 161 additions and 14 deletions
+4
View File
@@ -34,3 +34,7 @@ class ProjectColumn(CompletableGithubObject):
def updated_at(self) -> datetime: ...
@property
def url(self) -> str: ...
def move(self, position: str) -> bool: ...
def delete(self) -> bool: ...
def edit(self, name: str) -> None: ...