Skip to content

Commit 76b0db5

Browse files
author
amgrobelny-box
committed
Formatting and adding to CHANGELOG
1 parent d6f128c commit 76b0db5

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

BoxCLI/CommandUtilities/CsvModels/BoxEventMap.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ namespace BoxCLI.CommandUtilities.CsvModels
77
public class BoxEventMap : CsvClassMap<BoxEnterpriseEvent>
88
{
99
public BoxEventMap()
10-
{ Map(m => m.CreatedAt);
10+
{
11+
Map(m => m.CreatedAt);
1112
Map(m => m.EventId);
1213
Map(m => m.EventType);
1314
Map(m => m.IPAddress);

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## 1.1.1
44
- Fixed bug preventing removal of a user from an Enterprise and conversion to a free user account.
55
- Fixed bug that returned incorrect total count when using `box list users -m` to only list managed users.
6+
- Added CreatedAt field to CSV output for events.
67

78
## 1.1.0
89
- Added new feature on all commands for using an individual token. Add the `--token` option to perform an individual command with the Box CLI using a specific token you provide. The feature is most useful when paired with the Developer Token you can generate through the Box Developer Console. When working with an application you create in the Box Developer Console, you will not need to authorize the application into a Box Enterprise before working with the Developer Token. For example usage: `box users get me --token <token_string>`. Certain commands may fail based on the permissions of the user to which the token you use belongs.

0 commit comments

Comments
 (0)