Skip to content

Commit

Permalink
feat(gno/dao): enhance naming for dao kind
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelVallenet committed Jan 2, 2025
1 parent 5cbf38e commit 62de6c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/utils/gnodao/generateMembershipDAOSource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const generateMembershipDAOSource = (
profile.SetStringField(profile.Bio, "${conf.description}")
profile.SetStringField(profile.Avatar, "${conf.imageURI}")
dao_registry.Register(func() dao_interfaces.IDAOCore { return daoCore }, "${conf.displayName}", "${conf.description}", "membership", "${conf.imageURI}")
dao_registry.Register(func() dao_interfaces.IDAOCore { return daoCore }, "${conf.displayName}", "${conf.description}", "memberships based organization", "${conf.imageURI}")
}
func Render(path string) string {
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/gnodao/generateRolesDAOSource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func init() {
profile.SetStringField(profile.Bio, "${conf.description}")
profile.SetStringField(profile.Avatar, "${conf.imageURI}")
dao_registry.Register(func() dao_interfaces.IDAOCore { return daoCore }, "${conf.displayName}", "${conf.description}", "roles", "${conf.imageURI}")
dao_registry.Register(func() dao_interfaces.IDAOCore { return daoCore }, "${conf.displayName}", "${conf.description}", "roles based organization", "${conf.imageURI}")
}
func Render(path string) string {
Expand Down

0 comments on commit 62de6c0

Please sign in to comment.