forked from External/mage
Added User Feedback support.
This commit is contained in:
parent
e50de69420
commit
3434dc1a97
14 changed files with 1065 additions and 149 deletions
|
|
@ -0,0 +1,14 @@
|
|||
package mage.server.services;
|
||||
|
||||
/**
|
||||
* Responsible for gathering feedback from users and storing them in DB.
|
||||
*
|
||||
* @author noxx
|
||||
*/
|
||||
public interface FeedbackService {
|
||||
|
||||
/**
|
||||
* Saves feedback.
|
||||
*/
|
||||
void feedback(String username, String title, String type, String message, String email, String host);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue