1044518e74
Throw an error instead of updating a word filter that doesn't exist. Track a bit of extra data for word filter updates. Shorten the prefixes of the adminlog phrases from panel_logs_administration_ to panel_logs_admin_ Add a bunch of new adminlog phrases. Tweak the word filter phrases. Add the extra column to the moderation_logs and administration_logs tables. You need to run the updater / patcher for this commit.
30 lines
689 B
Go
30 lines
689 B
Go
// WIP - Experimental adventure plugin, this might find a new home soon, but it's here to stress test Gosora's extensibility for now
|
|
package extend
|
|
|
|
import c "github.com/Azareal/Gosora/common"
|
|
|
|
func init() {
|
|
c.Plugins.Add(&c.Plugin{
|
|
UName: "adventure",
|
|
Name: "Adventure",
|
|
Tag: "WIP",
|
|
Author: "Azareal",
|
|
URL: "https://github.com/Azareal",
|
|
Init: initAdventure,
|
|
Deactivate: deactivateAdventure,
|
|
Install: installAdventure,
|
|
})
|
|
}
|
|
|
|
func initAdventure(pl *c.Plugin) error {
|
|
return nil
|
|
}
|
|
|
|
// TODO: Change the signature to return an error?
|
|
func deactivateAdventure(pl *c.Plugin) {
|
|
}
|
|
|
|
func installAdventure(pl *c.Plugin) error {
|
|
return nil
|
|
}
|