@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Allow administrators to edit the "Account" panel for mailing lists and bots

Summary:
Ref T8387. Ref T6367. This allows selection of a language, which will be respected in email delievered to the list users.

For example, you could have a German list that gets mail in German or something. I don't know that the feature is really useful, it's mostly just for completeness.

I also supported it for bots, mostly so their pronouns can be configured.

Test Plan: {F468186}

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

Maniphest Tasks: T6367, T8387

Differential Revision: https://secure.phabricator.com/D13136

+7 -2
+7 -2
src/applications/settings/panel/PhabricatorAccountSettingsPanel.php
··· 14 14 return pht('Account Information'); 15 15 } 16 16 17 + public function isEditableByAdministrators() { 18 + return true; 19 + } 20 + 17 21 public function processRequest(AphrontRequest $request) { 18 - $user = $request->getUser(); 22 + $viewer = $this->getViewer(); 23 + $user = $this->getUser(); 19 24 $username = $user->getUsername(); 20 25 21 26 $errors = array(); ··· 74 79 75 80 $form = new AphrontFormView(); 76 81 $form 77 - ->setUser($user) 82 + ->setUser($viewer) 78 83 ->appendChild( 79 84 id(new AphrontFormSelectControl()) 80 85 ->setOptions($translations)