优化发布群配置与二维码池界面

This commit is contained in:
yml
2026-06-17 20:59:24 +08:00
parent ac98841992
commit 0a42392d5e
14 changed files with 460 additions and 74 deletions
+14
View File
@@ -208,3 +208,17 @@ func (s *Service) UpdateAutoWelcomeMessage(ctx context.Context, message string)
}
return s.repo.UpdateAutoWelcomeMessage(ctx, message)
}
func (s *Service) GetListingGroupWelcomeMessage(ctx context.Context) string {
if s.repo == nil {
return ""
}
return s.repo.GetListingGroupWelcomeMessage(ctx)
}
func (s *Service) UpdateListingGroupWelcomeMessage(ctx context.Context, message string) error {
if s.repo == nil {
return ErrDependencyUnavailable
}
return s.repo.UpdateListingGroupWelcomeMessage(ctx, message)
}