Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hilo-group
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hujiebin
hilo-group
Commits
49170c8b
You need to sign in or sign up before continuing.
Commit
49170c8b
authored
Apr 25, 2023
by
chenweijian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trtc
parent
eb9429c1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
5 deletions
+1
-5
groupInfo.go
domain/model/group_m/groupInfo.go
+0
-4
group_op.go
domain/service/group_s/group_op.go
+1
-1
No files found.
domain/model/group_m/groupInfo.go
View file @
49170c8b
...
@@ -68,10 +68,6 @@ func CreateGroup(model *domain.Model, groupInfo *GroupInfo) error {
...
@@ -68,10 +68,6 @@ func CreateGroup(model *domain.Model, groupInfo *GroupInfo) error {
return
model
.
Db
.
Create
(
groupInfo
)
.
Error
return
model
.
Db
.
Create
(
groupInfo
)
.
Error
}
}
func
CreateGroupTRTC
(
model
*
domain
.
Model
,
groupInfo
*
GroupInfo
)
error
{
return
model
.
DB
()
.
Exec
(
"INSERT INTO hilo.group_trtc (im_group_id) VALUES(?);"
,
groupInfo
.
ImGroupId
)
.
Error
}
func
FindGroupByOwner
(
model
*
domain
.
Model
,
ownerId
uint64
)
([]
GroupInfo
,
error
)
{
func
FindGroupByOwner
(
model
*
domain
.
Model
,
ownerId
uint64
)
([]
GroupInfo
,
error
)
{
rows
:=
make
([]
GroupInfo
,
0
)
rows
:=
make
([]
GroupInfo
,
0
)
err
:=
model
.
Db
.
Where
(
&
GroupInfo
{
Owner
:
ownerId
})
.
Find
(
&
rows
)
.
Error
err
:=
model
.
Db
.
Where
(
&
GroupInfo
{
Owner
:
ownerId
})
.
Find
(
&
rows
)
.
Error
...
...
domain/service/group_s/group_op.go
View file @
49170c8b
...
@@ -43,7 +43,7 @@ func (s *GroupService) CreateGroup(userId uint64, g *group_m.GroupInfo) error {
...
@@ -43,7 +43,7 @@ func (s *GroupService) CreateGroup(userId uint64, g *group_m.GroupInfo) error {
return
err
return
err
}
}
// 新房间标记成trtc房间
// 新房间标记成trtc房间
if
err
:=
group_m
.
CreateGroupTRTC
(
model
,
g
);
err
!=
nil
{
if
err
:=
group_m
.
InitTRTC
(
model
,
g
.
ImGroupId
);
err
!=
nil
{
return
err
return
err
}
}
return
nil
return
nil
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment