19 lines
323 B
Go
19 lines
323 B
Go
|
package requests
|
||
|
|
||
|
import (
|
||
|
"github.com/status-im/status-go/eth-node/types"
|
||
|
)
|
||
|
|
||
|
type CommunityChannelShareURL struct {
|
||
|
CommunityID types.HexBytes
|
||
|
ChannelID string
|
||
|
}
|
||
|
|
||
|
func (r *CommunityChannelShareURL) Validate() error {
|
||
|
if len(r.CommunityID) == 0 {
|
||
|
return ErrCheckPermissionToJoinCommunityInvalidID
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|