@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.

Add a date column to Paste

Summary:
Show modified date on the right of the list view (which I guess
is also the created date, since pastes are immutable?)

Test Plan: Browse through the many volumes of untitled masterworks.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T1600

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

+6
+6
src/applications/paste/controller/PhabricatorPasteListController.php
··· 362 362 'href' => $file_uri, 363 363 ), 364 364 phutil_escape_html($paste->getFilePHID())), 365 + 366 + phabricator_datetime( 367 + $paste->getDateCreated(), 368 + $this->getRequest()->getUser()), 365 369 ); 366 370 } 367 371 ··· 374 378 'Language', 375 379 'Title', 376 380 'File', 381 + 'Created', 377 382 )); 378 383 379 384 $table->setColumnClasses( ··· 383 388 null, 384 389 'wide pri', 385 390 null, 391 + 'right', 386 392 )); 387 393 388 394 $panel = new AphrontPanelView();