diff --git a/src/__phutil_library_map__.php b/src/__phutil_library_map__.php index 3646b02e62..279ecfff6b 100644 --- a/src/__phutil_library_map__.php +++ b/src/__phutil_library_map__.php @@ -6966,6 +6966,7 @@ phutil_register_library_map(array( 'PhabricatorPolicyInterface', 'PhabricatorMarkupInterface', 'PhabricatorSubscribableInterface', + 'PhabricatorFlaggableInterface', 'PhabricatorApplicationTransactionInterface', ), 'PhameBlogDeleteController' => 'PhameController', @@ -6989,6 +6990,7 @@ phutil_register_library_map(array( 'PhameDAO', 'PhabricatorPolicyInterface', 'PhabricatorMarkupInterface', + 'PhabricatorFlaggableInterface', 'PhabricatorApplicationTransactionInterface', 'PhabricatorSubscribableInterface', 'PhabricatorTokenReceiverInterface', diff --git a/src/applications/phame/storage/PhameBlog.php b/src/applications/phame/storage/PhameBlog.php index eda16586e2..2d5e1effcb 100644 --- a/src/applications/phame/storage/PhameBlog.php +++ b/src/applications/phame/storage/PhameBlog.php @@ -5,6 +5,7 @@ final class PhameBlog extends PhameDAO PhabricatorPolicyInterface, PhabricatorMarkupInterface, PhabricatorSubscribableInterface, + PhabricatorFlaggableInterface, PhabricatorApplicationTransactionInterface { const MARKUP_FIELD_DESCRIPTION = 'markup:description'; diff --git a/src/applications/phame/storage/PhamePost.php b/src/applications/phame/storage/PhamePost.php index 6695722937..7245240b3a 100644 --- a/src/applications/phame/storage/PhamePost.php +++ b/src/applications/phame/storage/PhamePost.php @@ -4,6 +4,7 @@ final class PhamePost extends PhameDAO implements PhabricatorPolicyInterface, PhabricatorMarkupInterface, + PhabricatorFlaggableInterface, PhabricatorApplicationTransactionInterface, PhabricatorSubscribableInterface, PhabricatorTokenReceiverInterface {