Skip to content

Commit baf68b1

Browse files
committed
Fix issue 753 to add "created_by" column to block / file
1 parent b07a190 commit baf68b1

3 files changed

Lines changed: 5 additions & 0 deletions

File tree

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Jason Johnson <[email protected]>
1111
Kevin Landreth <[email protected]>
1212
Kevin McDonald <[email protected]>
1313
Łukasz Oleś <[email protected]>
14+
Michael Fork <[email protected]>
1415
Nathan Beittenmiller <[email protected]>
1516
Neetu Jain <[email protected]>
1617
Paul Sroufe <[email protected]>

SoftLayer/CLI/block/list.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
column_helper.Column('lunId', ('lunId',), mask="lunId"),
2929
column_helper.Column('active_transactions', ('activeTransactionCount',),
3030
mask="activeTransactionCount"),
31+
column_helper.Column('created_by',
32+
('billingItem', 'orderItem', 'order', 'userRecord', 'username')),
3133
]
3234

3335
DEFAULT_COLUMNS = [

SoftLayer/CLI/file/list.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
mask="serviceResourceBackendIpAddress"),
2828
column_helper.Column('active_transactions', ('activeTransactionCount',),
2929
mask="activeTransactionCount"),
30+
column_helper.Column('created_by',
31+
('billingItem', 'orderItem', 'order', 'userRecord', 'username')),
3032
]
3133

3234
DEFAULT_COLUMNS = [

0 commit comments

Comments
 (0)