Made change-role patch accept CLI arguments
This commit is contained in:
parent
8849449c4a
commit
db72609650
@ -1,13 +1,30 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"flag"
|
||||
|
||||
"github.com/animenotifier/arn"
|
||||
)
|
||||
|
||||
// Shell parameters
|
||||
var userID string
|
||||
var role string
|
||||
|
||||
// Shell flags
|
||||
func init() {
|
||||
flag.StringVar(&userID, "id", "", "ID of the user")
|
||||
flag.StringVar(&role, "role", "", "The user's new role")
|
||||
flag.Parse()
|
||||
}
|
||||
|
||||
func main() {
|
||||
defer arn.Node.Close()
|
||||
|
||||
user, _ := arn.GetUser("Vy2Hk5yvx")
|
||||
user.Role = ""
|
||||
// Get user
|
||||
user, err := arn.GetUser(userID)
|
||||
arn.PanicOnError(err)
|
||||
|
||||
// Save role
|
||||
user.Role = role
|
||||
user.Save()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user