17 lines
493 B
Go
17 lines
493 B
Go
package chat
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.imall.cloud/openim/chat/pkg/protocol/chat"
|
|
)
|
|
|
|
func (o *chatSvr) SetAllowRegister(ctx context.Context, req *chat.SetAllowRegisterReq) (*chat.SetAllowRegisterResp, error) {
|
|
o.AllowRegister = req.AllowRegister
|
|
return &chat.SetAllowRegisterResp{}, nil
|
|
}
|
|
|
|
func (o *chatSvr) GetAllowRegister(ctx context.Context, req *chat.GetAllowRegisterReq) (*chat.GetAllowRegisterResp, error) {
|
|
return &chat.GetAllowRegisterResp{AllowRegister: o.AllowRegister}, nil
|
|
}
|