Skip to content

Commit

Permalink
fix: Board Ownership Transfer did not reassign owner (#1299)
Browse files Browse the repository at this point in the history
* fix: fixed transfer of board ownership not working

* Update board.py
  • Loading branch information
jij1949 authored Aug 14, 2023
1 parent 21ea259 commit 47ca744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion querybook/server/logic/board.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def update_board(id, commit=True, session=None, **fields):
board = Board.update(
id,
fields=fields,
field_names=["name", "description", "public"],
field_names=["name", "description", "public", "owner_uid"],
commit=commit,
session=session,
)
Expand Down

0 comments on commit 47ca744

Please sign in to comment.