Skip to content

Commit

Permalink
Formatting and adding to CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
amgrobelny-box committed Dec 11, 2017
1 parent d6f128c commit 76b0db5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion BoxCLI/CommandUtilities/CsvModels/BoxEventMap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ namespace BoxCLI.CommandUtilities.CsvModels
public class BoxEventMap : CsvClassMap<BoxEnterpriseEvent>
{
public BoxEventMap()
{ Map(m => m.CreatedAt);
{
Map(m => m.CreatedAt);
Map(m => m.EventId);
Map(m => m.EventType);
Map(m => m.IPAddress);
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 1.1.1
- Fixed bug preventing removal of a user from an Enterprise and conversion to a free user account.
- Fixed bug that returned incorrect total count when using `box list users -m` to only list managed users.
- Added CreatedAt field to CSV output for events.

## 1.1.0
- 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.
Expand Down

0 comments on commit 76b0db5

Please sign in to comment.