-
Notifications
You must be signed in to change notification settings - Fork 441
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12243 from nextcloud/feat/12209/show-description
feat(OpenConversationsList): expose description
- Loading branch information
Showing
10 changed files
with
39 additions
and
33 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -296,10 +296,6 @@ export default { | |
&__editor { | ||
height: 100%; | ||
padding: 20px; | ||
|
||
h2 { | ||
margin-top: 0; | ||
} | ||
} | ||
} | ||
|
||
|
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 |
---|---|---|
|
@@ -28,12 +28,14 @@ Feature: conversation/find-listed | |
And user "creator" creates room "public-room" (v4) | ||
| roomType | 3 | | ||
| roomName | public-room | | ||
And user "creator" sets description for room "group-room" to "the group-room description" with 200 (v4) | ||
And user "creator" sets description for room "public-room" to "the public-room description" with 200 (v4) | ||
When user "creator" allows listing room "group-room" for "users" with 200 (v4) | ||
And user "creator" allows listing room "public-room" for "users" with 200 (v4) | ||
Then user "regular-user" can find listed rooms (v4) | ||
| name | listable | | ||
| group-room | 1 | | ||
| public-room | 1 | | ||
| name | listable | description | | ||
| group-room | 1 | the group-room description | | ||
| public-room | 1 | the public-room description | | ||
And user "[email protected]" cannot find any listed rooms (v4) | ||
|
||
Scenario: All users can find all-listed rooms | ||
|