Skip to content

Commit c75a12c

Browse files
add full dotted path to models
1 parent 0a8bd37 commit c75a12c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ All models and their managers provide async methods for database operations and
207207
208208
#### `EventLog`
209209
210-
Maintains a history of incoming webhook events, storing both the event type and its full payload. Automatically cleans up old events based on your configuration, via the `acleanup_events` manager method and the `GITHUB_APP["DAYS_TO_KEEP_EVENTS"]` setting.
210+
`django_github_app.models.EventLog` maintains a history of incoming webhook events, storing both the event type and its full payload. Automatically cleans up old events based on your configuration, via the `acleanup_events` manager method and the `GITHUB_APP["DAYS_TO_KEEP_EVENTS"]` setting.
211211
212212
Manager methods:
213213
@@ -222,7 +222,7 @@ The model primarily serves the webhook handling system, but you can also use it
222222
223223
#### `Installation`
224224
225-
Represents where your GitHub App is installed. Stores the installation ID and metadata from GitHub, and provides methods for authentication:
225+
`django_github_app.models.Installation` represents where your GitHub App is installed. Stores the installation ID and metadata from GitHub, and provides methods for authentication:
226226
227227
```python
228228
from django_github_app.models import Installation
@@ -245,7 +245,7 @@ Methods:
245245
246246
#### `Repository`
247247
248-
Tracks repositories where your app is installed and provides high-level methods for GitHub operations:
248+
`django_github_app.models.Repository` tracks repositories where your app is installed and provides high-level methods for GitHub operations:
249249
250250
```python
251251
from django_github_app.models import Repository

0 commit comments

Comments
 (0)