Remove duplicate bus.AddHandler() (#9289)

`bus.AddHandler("sql", SetUsingOrg)` is already called on line 24.

Very minor change.
This commit is contained in:
Aaron Kirkbride 2017-09-18 14:52:15 +01:00 committed by Daniel Lee
parent 5f6de33487
commit 442f625a4e

View File

@ -28,7 +28,6 @@ func init() {
bus.AddHandler("sql", SearchUsers)
bus.AddHandler("sql", GetUserOrgList)
bus.AddHandler("sql", DeleteUser)
bus.AddHandler("sql", SetUsingOrg)
bus.AddHandler("sql", UpdateUserPermissions)
bus.AddHandler("sql", SetUserHelpFlag)
}