mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-04 12:42:43 +01:00
ffadf64751
Summary: Basic plumbing for Badges application. - You can make Badges. - You can look at a list of them. - They can be edited. - They can be assigned to people. - You can revoke them from people. - You can subscribe to them. Test Plan: Make Badges with various options. Give them to people. Take them away from people. Reviewers: lpriestley, epriestley Reviewed By: epriestley Subscribers: tycho.tatitscheff, johnny-bit, epriestley, Korvin Maniphest Tasks: T6526 Differential Revision: https://secure.phabricator.com/D13626
9 lines
142 B
PHP
9 lines
142 B
PHP
<?php
|
|
|
|
abstract class PhabricatorBadgesDAO extends PhabricatorLiskDAO {
|
|
|
|
public function getApplicationName() {
|
|
return 'badges';
|
|
}
|
|
|
|
}
|