Skip to content

Commit

Permalink
Merge branch 'staff-channelList' of github.com:ucsb-cs156-f20/proj-ma…
Browse files Browse the repository at this point in the history
…pache-search into staff-channelList
  • Loading branch information
pconrad committed Nov 24, 2020
2 parents 71350cb + 4c2eed9 commit d42472a
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 12 deletions.
39 changes: 39 additions & 0 deletions .github/ISSUE_TEMPLATE/user-story.md
@@ -0,0 +1,39 @@
---
name: User Story
about: This is the format for defining user story issues.
title: ''
labels: ''
assignees: ''

---

# User Story

As a ____ I can ____ so that ____

# Acceptance Criteria

- [ ] First thing that should be true when story is done.
- [ ] Second thing that should be true when story is done.
...

# Implementation Todos

Front end:

- [ ] First thing that must be done in the front end code.
- [ ] Second thing that must be done in the front end code.
...

Back end:

- [ ] First thing that must be done in the back end code.
- [ ] Second thing that must be done in the back end code.
...


Testing:

- [ ] Front end tests pass and there is adequate coverage
- [ ] Back end tests pass and there is adequate coverage
...
12 changes: 0 additions & 12 deletions src/main/java/edu/ucsb/mapache/documents/Channel.java
Expand Up @@ -102,18 +102,6 @@ public void setPurpose(ChannelPurpose purpose) {
this.purpose = purpose;
}


@Override
public boolean equals(Object o) {
if (o == this)
return true;
if (!(o instanceof Channel)) {
return false;
}
Channel channel = (Channel) o;
return Objects.equals(id, channel.id) && Objects.equals(name, channel.name) && Objects.equals(creator, channel.creator) && Objects.equals(is_archived, channel.is_archived) && Objects.equals(is_general, channel.is_general) && Objects.equals(members, channel.members) && Objects.equals(topic, channel.topic) && Objects.equals(purpose, channel.purpose);
}

@Override
public boolean equals(Object o) {
if (o == this)
Expand Down

0 comments on commit d42472a

Please sign in to comment.