Compare commits
5 Commits
5038582406
...
1ac164b860
Author | SHA1 | Date |
---|---|---|
|
1ac164b860 | |
|
bef69c6bad | |
|
1cf2f9a073 | |
|
5178600fea | |
|
2d4c8ebfd9 |
|
@ -165,7 +165,7 @@ class Plugin:
|
|||
"""
|
||||
from ..controller import pluginController
|
||||
|
||||
return pluginController.set_setting(self.id, name, value)
|
||||
return pluginController.set_setting(self.name, name, value)
|
||||
|
||||
def notify(self, user, text: str, data=None):
|
||||
"""Create a new notification for an user
|
||||
|
@ -181,7 +181,7 @@ class Plugin:
|
|||
"""
|
||||
from ..controller import pluginController
|
||||
|
||||
return pluginController.notify(self.id, user, text, data)
|
||||
return pluginController.notify(self.name, user, text, data)
|
||||
|
||||
def serialize(self):
|
||||
"""Serialize a plugin into a dict
|
||||
|
|
Loading…
Reference in New Issue