Browse Source
Previously to update a role you would update attributes of the role object, and then call save. This was very much an anti-pattern when compared to the way things work elsewhere, and had the following annoyances attached to it; - Updating attributes of the object actually smashes state, we aren't guarenteed that the user will call save nor that the API will accept our save, and thus attributes on the object (which could be shared within the state module) are smashed and innaccurate. - Guild.update_role is effectively useless in this case, we can only ever pass a role object in. This makes partial updates impossible, and forces us to match the OO interface to use it. The new style follows along with how we do things elsewhere, there is still likely some additional work that can be done here to allow passing in the role, but for now we'll just call this a deprecationpull/54/head
2 changed files with 24 additions and 13 deletions
Loading…
Reference in new issue