You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
package api
import ( "fmt" "github.com/gin-gonic/gin" "main/controller/servers" "main/model/sysModel" )
type CasbinInReceive struct { AuthorityId string `json:"authorityId"` Paths []string `json:paths` }
// @Tags casbin
// @Summary 更改角色api权限
// @Security ApiKeyAuth
// @accept application/json
// @Produce application/json
// @Param data body api.CreateAuthorityPatams true "更改角色api权限"
// @Success 200 {string} json "{"success":true,"data":{},"msg":"获取成功"}"
// @Router /casbin/casbinPUpdata [post]
func CasbinPUpdata(c *gin.Context){ var cmr CasbinInReceive _ = c.ShouldBind(&cmr) err := new(sysModel.CasbinModel).CasbinPUpdata(cmr.AuthorityId,cmr.Paths) if err != nil { servers.ReportFormat(c, false, fmt.Sprintf("添加规则失败,%v", err), gin.H{}) } else { servers.ReportFormat(c, true, "添加规则成功", gin.H{}) } }
// @Tags casbin
// @Summary 获取权限列表
// @Security ApiKeyAuth
// @accept application/json
// @Produce application/json
// @Param data body api.CreateAuthorityPatams true "获取权限列表"
// @Success 200 {string} json "{"success":true,"data":{},"msg":"获取成功"}"
// @Router /casbin/getPolicyPathByAuthorityId [post]
func GetPolicyPathByAuthorityId(c *gin.Context){ var cmr CasbinInReceive _ = c.ShouldBind(&cmr) paths := new(sysModel.CasbinModel).GetPolicyPathByAuthorityId(cmr.AuthorityId) servers.ReportFormat(c, true, "获取规则成功", gin.H{"paths":paths}) }
|