Sha256: ab4ac133a8fcb5e9309953c5326dd106e4d472981a23655005413cfdb7d010f9

Contents?: true

Size: 1.58 KB

Versions: 54

Compression:

Stored size: 1.58 KB

Contents

# FileComment

## Example FileComment Object

```
{
  "id": 1,
  "body": "What a great file!",
  "reactions": [

  ]
}
```

* `id` (int64): File Comment ID
* `body` (string): Comment body.
* `reactions` (array): Reactions to this comment.
* `path` (string): File path.


---

## List File Comments by path

```
Files::FileComment.list_for(path, 
  page: 1, 
  per_page: 1
)
```

### Parameters

* `page` (int64): Current page number.
* `per_page` (int64): Number of records to show per page.  (Max: 10,000, 1,000 or less is recommended).
* `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
* `path` (string): Required - Path to operate on.


---

## Create File Comment

```
Files::FileComment.create(
  body: "body", 
  path: "path"
)
```

### Parameters

* `body` (string): Required - Comment body.
* `path` (string): Required - File path.


---

## Update File Comment

```
Files::FileComment.update(id, 
  body: "body"
)
```

### Parameters

* `id` (int64): Required - File Comment ID.
* `body` (string): Required - Comment body.


---

## Delete File Comment

```
Files::FileComment.delete(id)
```

### Parameters

* `id` (int64): Required - File Comment ID.


---

## Update File Comment

```
file_comment = Files::FileComment.find(1)
file_comment.update(
  body: "body"
)
```

### Parameters

* `id` (int64): Required - File Comment ID.
* `body` (string): Required - Comment body.


---

## Delete File Comment

```
file_comment = Files::FileComment.find(1)
file_comment.delete
```

### Parameters

* `id` (int64): Required - File Comment ID.

Version data entries

54 entries across 54 versions & 1 rubygems

Version Path
files.com-1.0.40 docs/file_comment.md
files.com-1.0.39 docs/file_comment.md
files.com-1.0.38 docs/file_comment.md
files.com-1.0.37 docs/file_comment.md
files.com-1.0.36 docs/file_comment.md
files.com-1.0.35 docs/file_comment.md
files.com-1.0.34 docs/file_comment.md
files.com-1.0.33 docs/file_comment.md
files.com-1.0.32 docs/file_comment.md
files.com-1.0.31 docs/file_comment.md
files.com-1.0.30 docs/file_comment.md
files.com-1.0.29 docs/file_comment.md
files.com-1.0.28 docs/file_comment.md
files.com-1.0.27 docs/file_comment.md
files.com-1.0.26 docs/file_comment.md
files.com-1.0.25 docs/file_comment.md
files.com-1.0.24 docs/file_comment.md
files.com-1.0.23 docs/file_comment.md
files.com-1.0.22 docs/file_comment.md
files.com-1.0.21 docs/file_comment.md