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

Fix property name typo in DrydockResource

Summary: `$capbilities` has a typo.

Test Plan: Slowly spell the word "capabilities"; compare with the top of the file.

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D25714

+1 -1
+1 -1
src/applications/drydock/storage/DrydockResource.php
··· 69 69 } 70 70 71 71 public function getCapability($key, $default = null) { 72 - return idx($this->capbilities, $key, $default); 72 + return idx($this->capabilities, $key, $default); 73 73 } 74 74 75 75 public function getInterface(DrydockLease $lease, $type) {