1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-10 02:35:58 +01:00

Make Redirect a method of group.

This commit is contained in:
Juliusz Chroboczek 2020-09-13 13:34:53 +02:00
parent f2fcc09e61
commit 03e57aac90

View file

@ -71,6 +71,10 @@ func (g *group) AllowRecording() bool {
return g.description.AllowRecording return g.description.AllowRecording
} }
func (g *group) Redirect() string {
return g.description.Redirect
}
var groups struct { var groups struct {
mu sync.Mutex mu sync.Mutex
groups map[string]*group groups map[string]*group