Skip to content

Commit c8a6bed

Browse files
committed
Merge branch 'master' of github.com:CodeChefVIT/devsoc-be-25
2 parents d15b57e + 11fcf2e commit c8a6bed

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

pkg/controller/admin.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,11 +292,20 @@ func CreatePanel(c echo.Context) error {
292292
PhoneNo: pgtype.Text{
293293
String: panel.PhoneNo,
294294
},
295+
<<<<<<< HEAD
295296
Role: "panel",
296297
IsLeader: true,
297298
IsVerified: true,
298299
IsBanned: false,
299300
Gender: panel.Gender,
301+
=======
302+
Role: "panel",
303+
IsLeader: true,
304+
IsVerified: true,
305+
IsBanned: false,
306+
Gender: panel.Gender,
307+
GithubProfile: &panel.GithubProfile,
308+
>>>>>>> 11fcf2e2295a69d11c2a99ea76ae68f7fc17df97
300309
}
301310
panelDb.ID, _ = uuid.NewV7()
302311
panelDb.TeamID = uuid.NullUUID{

pkg/controller/export.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,11 @@ func ExportUsers(c echo.Context) error {
8585
user.TeamID.UUID.String(),
8686
hostelBlock,
8787
roomNo,
88+
<<<<<<< HEAD
8889
githubProfile,
90+
=======
91+
*user.GithubProfile,
92+
>>>>>>> 11fcf2e2295a69d11c2a99ea76ae68f7fc17df97
8993
user.Role,
9094
strconv.FormatBool(user.IsLeader),
9195
strconv.FormatBool(user.IsVerified),

0 commit comments

Comments
 (0)