Skip to content

Commit

Permalink
Merge 2ff6bb0 into 2d2f3fa
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasagra committed May 14, 2021
2 parents 2d2f3fa + 2ff6bb0 commit fe8c542
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ You can set environment variables in your OS, write on ```.env``` file or pass v
| OIDC_RP_SIGN_ALGO | ```string``` | ```RS256``` | Sets the algorithm the IdP uses to sign ID tokens.
| OIDC_DRF_AUTH_BACKEND | ```string``` | ```bothub.authentication.authorization.WeniOIDCAuthenticationBackend``` | Define the authentication middleware for the django rest framework.
| RECAPTCHA_SECRET_KEY | ```string``` | ```''``` | Token of the recaptcha used in the validation of a user's registration.
| REPOSITORY_NLP_LOG_LIMIT | ```int``` | ```10000``` | Limit of query size to repository log


## Roadmap
Expand Down
2 changes: 1 addition & 1 deletion bothub/common/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,7 @@ class Meta:
condition=Q(from_backend=False),
)
]
ordering = ["-created_at"]
ordering = ["-id"]

text = models.TextField(help_text=_("Text"))
user_agent = models.TextField(help_text=_("User Agent"))
Expand Down
2 changes: 1 addition & 1 deletion bothub/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
schema_view = get_schema_view(
openapi.Info(
title="API Documentation",
default_version="v2.1.22",
default_version="v2.1.23",
description="Documentation",
terms_of_service="https://bothub.it/terms",
contact=openapi.Contact(email="bothub@ilhasoft.com.br"),
Expand Down

0 comments on commit fe8c542

Please sign in to comment.