Skip to content

Commit

Permalink
add robot status "Seen Recently" where missing in the documentation (#…
Browse files Browse the repository at this point in the history
…1312)

add robot status "Seen Recently" where missing
  • Loading branch information
jerryfletcher21 authored Jun 2, 2024
1 parent ae7ae27 commit 9e12166
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion api/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,8 @@ class OrderPublicSerializer(serializers.ModelSerializer):
maker_nick = serializers.CharField(required=False)
maker_hash_id = serializers.CharField(required=False)
maker_status = serializers.CharField(
help_text='Status of the nick - "Active" or "Inactive"', required=False
help_text='Status of the nick - "Active", "Seen Recently" or "Inactive"',
required=False,
)
price = serializers.FloatField(
help_text="Price in order's fiat currency", required=False
Expand Down
2 changes: 1 addition & 1 deletion docs/assets/schemas/api-latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1638,7 +1638,7 @@ components:
type: string
maker_status:
type: string
description: Status of the nick - "Active" or "Inactive"
description: Status of the nick - "Active", "Seen Recently" or "Inactive"
price:
type: number
format: double
Expand Down
2 changes: 1 addition & 1 deletion docs/assets/schemas/api-v0.1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1539,7 +1539,7 @@ components:
type: string
maker_status:
type: string
description: Status of the nick - "Active" or "Inactive"
description: Status of the nick - "Active", "Seen Recently" or "Inactive"
price:
type: integer
description: Price in order's fiat currency
Expand Down
2 changes: 1 addition & 1 deletion docs/assets/schemas/api-v0.5.3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1712,7 +1712,7 @@ components:
type: string
maker_status:
type: string
description: Status of the nick - "Active" or "Inactive"
description: Status of the nick - "Active", "Seen Recently" or "Inactive"
price:
type: number
format: double
Expand Down
2 changes: 1 addition & 1 deletion tests/api_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1734,7 +1734,7 @@ components:
type: string
maker_status:
type: string
description: Status of the nick - "Active" or "Inactive"
description: Status of the nick - "Active", "Seen Recently" or "Inactive"
price:
type: number
format: double
Expand Down

0 comments on commit 9e12166

Please sign in to comment.