6a320edbb4
Profile owners can now moderate their own profiles. Fixed an issue with database entries being set as null. A message now appears when there aren't any topics in a forum or in the global topics list. Added the link to the current user's profile to the main menu. Database Changes. not nulled some columns. Added is_mod column to users_groups. Added the Moderator usergroup.
13 lines
133 B
Go
13 lines
133 B
Go
package main
|
|
|
|
type Group struct
|
|
{
|
|
ID int
|
|
Name string
|
|
Permissions string
|
|
Is_Mod bool
|
|
Is_Admin bool
|
|
Is_Banned bool
|
|
Tag string
|
|
}
|