[CORL-561, CORL-562] Comment stream and account profile styling cleanup (#2517)

* update styles for comment stream

* more comment styling fixes

* reconfigure settings tab and account settings in stream

* add new button variant

* style settings tab

* style change username/email/password

* clean up settings tab

* integrate account deletion to account settings

* update comment history styles

* more history comment styles

* update snaps

* move userbox

* fix tests

* fix delete account tests

* update message box styling

* update snap

* update snaps

* fix lints

* update snaps again

* userbox styles

* history comment styling

* update snaps

* fix ts

* Integrate notifications settings

* clean up account setting styles

* update snaps and tests

* fix lints

* fix: PENDING_DELETION permissions

* chore: sync stable classnames, rename settings to account

* simplify css

* update snaps
This commit is contained in:
Tessa Thornton
2019-09-06 13:41:55 -04:00
committed by Kim Gardner
parent e49905c5ad
commit ac203607ae
109 changed files with 2620 additions and 2451 deletions
@@ -1723,7 +1723,7 @@ type User {
notifications stores the notification settings for the given User.
"""
notifications: UserNotificationSettings!
@auth(userIDField: "id", permit: [SUSPENDED, BANNED])
@auth(userIDField: "id", permit: [SUSPENDED, BANNED, PENDING_DELETION])
"""
createdAt is the time that the User was created at.
@@ -5049,7 +5049,7 @@ type Mutation {
"""
cancelAccountDeletion(
input: CancelAccountDeletionInput!
): CancelAccountDeletionPayload! @auth(permit: [PENDING_DELETION])
): CancelAccountDeletionPayload! @auth(permit: [SUSPENDED, BANNED, PENDING_DELETION])
"""
createToken allows an administrator to create a Token based on the current
@@ -5137,14 +5137,14 @@ type Mutation {
ignoreUser will mark the given User as ignored by the current logged in User.
"""
ignoreUser(input: IgnoreUserInput!): IgnoreUserPayload!
@auth(permit: [SUSPENDED, BANNED])
@auth(permit: [SUSPENDED, BANNED, PENDING_DELETION])
"""
removeUserIgnore will remove the given User from the ignored user list from
the current logged in User.
"""
removeUserIgnore(input: RemoveUserIgnoreInput!): RemoveUserIgnorePayload!
@auth(permit: [SUSPENDED, BANNED])
@auth(permit: [SUSPENDED, BANNED, PENDING_DELETION])
"""
requestCommentsDownload allows a user to request to download their comments.