We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The idea is to create functionality for specification of custom getters and setters for domain model fields.
class Profile(models.DomainModel): id = fields.Int() open_id = fields.Int() @open_id.getter def _get_oid(self): return self.id >> 8 @open_id.setter def _set_oid(self, value): self.id = value << 8
Notes:
The text was updated successfully, but these errors were encountered:
As we have contextual views now, is this task actual then? What do you think, @rmk135 ?
Sorry, something went wrong.
Issue #26: Fields custom getters and setters.
902333b
fc4ce6b
boonya
No branches or pull requests
The idea is to create functionality for specification of custom getters and setters for domain model fields.
Notes:
The text was updated successfully, but these errors were encountered: