Skip to content

Instantly share code, notes, and snippets.

@chris001177
Last active June 21, 2019 11:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chris001177/2fa9923778a0f145e1dd96a0267f09eb to your computer and use it in GitHub Desktop.
Save chris001177/2fa9923778a0f145e1dd96a0267f09eb to your computer and use it in GitHub Desktop.
package handler
import (
"fmt"
"github.com/myproject/definition"
"net/http"
"strings"
)
func UserPermissionsByID(w http.ResponseWriter, r *http.Request) {
id := r.URL.Query()["id"][0]
role := definition.UserDBInstance.UserRoleByID(id)
permissions := definition.RolePermissions[role]
fmt.Fprint(w, strings.Join(permissions, ", "))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment