mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-06 03:48:28 +01:00
Summary: Ref T9271, maybe fixes it. This restores feed publishing for answers (broken in D13951) and sends the author of the question an email for new answers. Also, unsure how to pull all question subsribers to the answer email, or is it automagical? Test Plan: notchad asks a question, chad answers, log into notchad and see that mail was delivered, see feed story. Reviewers: epriestley Reviewed By: epriestley Subscribers: revi, Korvin Maniphest Tasks: T9271 Differential Revision: https://secure.phabricator.com/D14171
14 lines
261 B
PHP
14 lines
261 B
PHP
<?php
|
|
|
|
abstract class PonderEditor
|
|
extends PhabricatorApplicationTransactionEditor {
|
|
|
|
public function getEditorApplicationClass() {
|
|
return 'PhabricatorPonderApplication';
|
|
}
|
|
|
|
protected function getMailSubjectPrefix() {
|
|
return '[Ponder]';
|
|
}
|
|
|
|
}
|