Skip to content
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

Server Based Colonies #1932

Merged
merged 28 commits into from
Dec 11, 2019
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
acf307e
Add: create colony graph mutation
rdig Nov 27, 2019
90e112d
Add: initial colony edit graph mutation
rdig Nov 27, 2019
b71da6d
Update: colony graph query and mutations
rdig Nov 28, 2019
4d6d498
Add: `createColony` sage write data into mongo
rdig Nov 28, 2019
d61ea6b
Fix: `colonyCreate` saga to use apollo client
rdig Nov 29, 2019
a63c774
Add: `ColonyMeta` display data from mongo
rdig Nov 29, 2019
477a0cb
Update: `colonyCreate` saga also save display name
rdig Nov 29, 2019
9fa0d9f
Refactor: `ColonyHome` get mongo data blockchain-first
rdig Dec 3, 2019
5744fb8
Add: get mongo data in `AdminDashboard`
rdig Dec 5, 2019
f54faf3
Refactor: colony home to use `useQuery` for data fetching
rdig Dec 5, 2019
45e8ea2
Add: `ProfileEdit` edit colony values in mongo
rdig Dec 5, 2019
642c713
Remove: un-needed colony update action types
rdig Dec 5, 2019
e755d20
Remove: saving data to orbit db when creating a colony
rdig Dec 5, 2019
9318759
Add: update and remove the colony avatar
rdig Dec 5, 2019
12b0718
Remove: unneeded colony avatar changed orbit events
rdig Dec 5, 2019
b7fe43c
Refactor: use generated graphql hooks
rdig Dec 9, 2019
029eb69
Fix: `StepCreateColonyWizard` get proper user values
rdig Dec 9, 2019
18c74de
Refactor: colony edit mutations to use generated code
rdig Dec 9, 2019
8301d4a
Update: `colonyCreate` saga also create native token
rdig Dec 10, 2019
0951122
Fix: `AdminDashboard` better colony data loading
rdig Dec 6, 2019
2053d45
Fix: `ColonyHome` lazily load colony data
rdig Dec 10, 2019
95237a0
Remove: colony profile metadata recovery functionality
rdig Dec 10, 2019
9c47989
Add: introduce `AnyColony` query result type
rdig Dec 10, 2019
0871cb5
Fix: `colonyCreate` remove remaining colony recovery
rdig Dec 10, 2019
2fb9611
Refactor: `ProfileEdit` use generated hook for colony edit
rdig Dec 10, 2019
9f22e98
Remove: unused colony avatar upload reducers
rdig Dec 11, 2019
4c7b411
Update: edit colony graph mutation to return all values
rdig Dec 11, 2019
bdcf9b6
Fix: re-emit colony avatar success/error actions
rdig Dec 11, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/data/constants.ts
Original file line number Diff line number Diff line change
@@ -17,8 +17,6 @@ export enum TaskStates {
export enum EventTypes {
ASSIGNED_TO_TASK = 'ASSIGNED_TO_TASK',
CANCELLED = 'CANCELLED',
COLONY_AVATAR_REMOVED = 'COLONY_AVATAR_REMOVED',
COLONY_AVATAR_UPLOADED = 'COLONY_AVATAR_UPLOADED',
COLONY_PROFILE_CREATED = 'COLONY_PROFILE_CREATED',
COLONY_PROFILE_UPDATED = 'COLONY_PROFILE_UPDATED',
COMMENT_MENTION = 'COMMENT_MENTION',
Loading