bounty_requests.models
Define bounty requests related models.
Copyright (C) 2018 Gitcoin Core
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see http://www.gnu.org/licenses/.
BountyQuerySet
BountyQuerySet(self, model=None, query=None, using=None, hints=None)
Define the Bounty Request QuerySet Manager.
BountyRequest
BountyRequest(self, *args, **kwargs)
Define the Bounty Request model.
amount
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
comment
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
comment_admin
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
eth_address
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
_method
BountyRequest._method(self, *, field=<django.db.models.fields.DateTimeField: created_on>, is_next=True, **kwargs)
_method
BountyRequest._method(self, *, field=<django.db.models.fields.DateTimeField: modified_on>, is_next=True, **kwargs)
_method
BountyRequest._method(self, *, field=<django.db.models.fields.DateTimeField: created_on>, is_next=False, **kwargs)
_method
BountyRequest._method(self, *, field=<django.db.models.fields.DateTimeField: modified_on>, is_next=False, **kwargs)
_method
BountyRequest._method(self, *, field=<django.db.models.fields.CharField: status>)
github_url
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
id
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
requested_by
Accessor to the related object on the forward side of a many-to-one or one-to-one (via ForwardOneToOneDescriptor subclass) relation.
In the example::
class Child(Model):
parent = ForeignKey(Parent, related_name='children')
Child.parent
is a ForwardManyToOneDescriptor
instance.
requested_by_id
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
status
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
STATUS_CHOICES
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable's items.
If the argument is a tuple, the return value is the same object.
STATUS_CLOSED
str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str
Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.
STATUS_FUNDED
str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str
Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.
STATUS_OPEN
str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str
Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.
BountyRequestMeta
BountyRequestMeta(self, *args, **kwargs)
A helper storage class for BountyRequest to keep track of dispatched emails.
_method
BountyRequestMeta._method(self, *, field=<django.db.models.fields.DateTimeField: created_on>, is_next=True, **kwargs)
_method
BountyRequestMeta._method(self, *, field=<django.db.models.fields.DateTimeField: last_feedback_sent>, is_next=True, **kwargs)
_method
BountyRequestMeta._method(self, *, field=<django.db.models.fields.DateTimeField: modified_on>, is_next=True, **kwargs)
_method
BountyRequestMeta._method(self, *, field=<django.db.models.fields.DateTimeField: created_on>, is_next=False, **kwargs)
_method
BountyRequestMeta._method(self, *, field=<django.db.models.fields.DateTimeField: last_feedback_sent>, is_next=False, **kwargs)
_method
BountyRequestMeta._method(self, *, field=<django.db.models.fields.DateTimeField: modified_on>, is_next=False, **kwargs)
id
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
last_feedback_sent
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
profile
Accessor to the related object on the forward side of a many-to-one or one-to-one (via ForwardOneToOneDescriptor subclass) relation.
In the example::
class Child(Model):
parent = ForeignKey(Parent, related_name='children')
Child.parent
is a ForwardManyToOneDescriptor
instance.
profile_id
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.