1

I'm using Trello.net to manage Trello boards through their API.

One thing I need to do, is change a new board I created to be public.

This code doesn't seem to work

myBoard.Prefs.PermissionLevel = PermissionLevel.Public;
trello.Boards.Update(myBoard);
Ron Harlev
  • 16,227
  • 24
  • 89
  • 132
  • 1
    It's not implemented. I might have time to fix it today. Follow progress here: https://github.com/dillenmeister/Trello.NET/issues/7 – dillenmeister Sep 27 '12 at 12:32

1 Answers1

2

As of release 0.5.5-beta Trello.NET supports this. Use Trello.Boards.ChangePermissionLevel. More info here.

dillenmeister
  • 1,627
  • 1
  • 10
  • 18