Skip to content

Commit

Permalink
Merge pull request #1115 from longguikeji/feature-fix-trial-period
Browse files Browse the repository at this point in the history
fix: 🐛 trial_period field readonly
  • Loading branch information
fanhe-lg committed Aug 1, 2022
2 parents 4d88685 + 7b63c63 commit dd75207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/v1/views/arkstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ class OrderPaymentOut(ResponseSchema):


class TrialDays(Schema):
trial_period: int = Field(title=_('Trial Days',"试用期(天)"))
trial_period: int = Field(readonly=True, title=_('Trial Days',"试用期(天)"))


class TrialDaysOut(ResponseSchema):
Expand Down

0 comments on commit dd75207

Please sign in to comment.