Skip to content
This repository has been archived by the owner on Apr 22, 2024. It is now read-only.

Commit

Permalink
add docs for archive / unarchive
Browse files Browse the repository at this point in the history
  • Loading branch information
yuters authored Mar 7, 2021
1 parent 00b3378 commit 2b0f47a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/recordings.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,21 @@ $recording->destroy();
// Or destroy with ID
Basecamp::recordings($project->id)->destroy($id);
```

## Archive a recording

```php
$recording->archive();

// Or archive with ID
Basecamp::recordings($project->id)->archive($id);
```

## Unarchive a recording

```php
$recording->unarchive();

// Or archive with ID
Basecamp::recordings($project->id)->unarchive($id);
```

0 comments on commit 2b0f47a

Please sign in to comment.