Merge pull request #6 from Selly-Modules/update-permission

[Update] Add request verify code
This commit is contained in:
trunglt251292 2022-08-23 09:14:54 +07:00 committed by GitHub
commit 7f64b03565
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 0 deletions

View File

@ -6,6 +6,7 @@ const (
SubjectRequestNatsCheckPermission = "authentication.request.staff.check_permission"
SubjectRequestNatsGetPermission = "authentication.request.staff.list_permission"
SubjectRequestNatsSyncStaff = "authentication.request.staff.sync_data"
SubjectRequestNatsVerifyCode = "authentication.request.staff.verify_code"
SubjectRequestNatsStaffCreate = "authentication.request.staff.create"
SubjectRequestNatsStaffUpdate = "authentication.request.staff.update"

View File

@ -9,6 +9,11 @@ func (Request) CheckPermission(payload StaffCheckPermissionBody) (*Response, err
return requestNats(SubjectRequestNatsCheckPermission, toBytes(payload))
}
// VerifyCode ...
func (Request) VerifyCode(payload StaffVerifyCodeBody) (*Response, error) {
return requestNats(SubjectRequestNatsVerifyCode, toBytes(payload))
}
// GetPermission ...
func (Request) GetPermission(payload StaffGetPermissions) (*Response, error) {
return requestNats(SubjectRequestNatsGetPermission, toBytes(payload))

View File

@ -5,6 +5,13 @@ import (
"go.mongodb.org/mongo-driver/bson"
)
// StaffVerifyCodeBody ...
type StaffVerifyCodeBody struct {
Code string `json:"code"`
StaffID string `json:"staffId"`
Source string `json:"source"`
}
// CommonQuery ...
type CommonQuery struct {
Page int64 `json:"page"`