-
-
Notifications
You must be signed in to change notification settings - Fork 771
New issue
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
project_types (formerly work schemes) #1098
Merged
Merged
Changes from all commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
39c5bc3
work schemes
owocki 958af75
work schemes
owocki d17cbd0
enforce limits on # ppl starting work
owocki 0f2bf25
work scheme on profile
owocki d47279c
small copy change
owocki b026b09
Merge branch 'master' into kevin/application_schemes
owocki 3a78bc2
thread the application
owocki 9935daf
make fix
owocki 47d23d4
syntax fixes vai make fix
owocki 6d7f957
todos
owocki 0754839
quick update
owocki b1139db
Merge branch 'master' into kevin/application_schemes
mbeacom 27b8c22
Stickler fixes, move work scheme fulfillment to method, rebuild migra…
mbeacom 46accfe
Merge branch 'master' into kevin/application_schemes
owocki 2bacec1
Merge branch 'kevin/application_schemes' of github.com:gitcoinco/web …
owocki 405b4e7
Merge mgiration, also migrates work type / schemes to project type
owocki 5cef237
docker-compose was wrong
owocki bdee8b5
approval required as a default"
owocki 5bd8d39
for contests, make it so it's open even if it's started
owocki 39ea65b
all the app schema emails
owocki 2b08d62
make fix
owocki 48eb347
qa and notifications
owocki 2f2bacb
Merge branch 'master' into kevin/application_schemes
owocki cb9424c
Merge branch 'master' into kevin/application_schemes
mbeacom c07282a
Update migrations
mbeacom 236c6e0
Merge branch 'master' into kevin/application_schemes
owocki 1594b31
merge migrations
owocki 108111b
copy
owocki 0e4d39d
code review
owocki 97fbeff
dupe msgs
owocki 000a522
copy update
owocki 02a1cf3
copy
owocki e7c0d12
Stickler
mbeacom f92d7c2
Stickler
mbeacom 74f7366
bugfxi
owocki 2e2df39
Merge branch 'kevin/application_schemes' of github.com:gitcoinco/web …
owocki e250e8a
acceptance date
owocki 403b5ee
acceptance date
owocki fd6d0c3
html tab sizing
owocki 437e154
Remove merge migration and reorder migrations
mbeacom 2d9a51c
show dibs still for traditional bounties
owocki b10d293
Merge branch 'kevin/application_schemes' of github.com:gitcoinco/web …
owocki e8e3041
alisa feedbak -- select forms
owocki 9a9486b
Revert "alisa feedbak -- select forms"
owocki d3b0ebe
Add pending copy to test interest assertion
mbeacom 7a7525d
Trim whitespace
mbeacom e1fdfea
removes tooltip from all select2, also removes searchbar from all but…
owocki 1694d5a
Merge branch 'kevin/application_schemes' of github.com:gitcoinco/web …
owocki 8e1bf64
Stickler
mbeacom File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Generated by Django 2.0.5 on 2018-06-04 17:23 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('dashboard', '0083_merge_20180601_1945'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='bounty', | ||
name='permission_type', | ||
field=models.CharField(choices=[('permissionless', 'permissionless'), ('approval', 'approval')], default='permissionless', max_length=50), | ||
), | ||
migrations.AddField( | ||
model_name='bounty', | ||
name='project_type', | ||
field=models.CharField(choices=[('traditional', 'traditional'), ('contest', 'contest'), ('cooperative', 'cooperative')], default='traditional', max_length=50), | ||
), | ||
migrations.AddField( | ||
model_name='interest', | ||
name='acceptance_date', | ||
field=models.DateTimeField(blank=True, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='interest', | ||
name='pending', | ||
field=models.BooleanField(default=False, help_text='If this option is chosen, this interest is pending and not yet active'), | ||
), | ||
migrations.AlterField( | ||
model_name='bounty', | ||
name='bounty_owner_profile', | ||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='bounties_funded', to='dashboard.Profile'), | ||
), | ||
] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Php :D
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you know it !