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

Caceves/appeals 46003 #21661

Merged
merged 3 commits into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const ReviewForm = (props) => {

const vaDORReadOnly = () => {
if (props.userIsCorrespondenceSuperuser || props.userIsCorrespondenceSupervisor) {
return false;
return true;
}

return true;
Expand Down
11 changes: 9 additions & 2 deletions db/seeds/users.rb
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ def create_users
create_oai_team_user
create_occ_team_user
create_inbound_ops_team_user
create_inbound_ops_team_super_user
create_cavc_lit_support_user
create_pulac_cerullo_user
create_mail_team_user
Expand Down Expand Up @@ -381,9 +382,15 @@ def create_inbound_ops_team_user
u = User.create!(station_id: 101, css_id: "INBOUND_OPS_TEAM_ADMIN_USER", full_name: "Jon MailTeam Snow Admin")
InboundOpsTeam.singleton.add_user(u)
OrganizationsUser.make_user_admin(u, InboundOpsTeam.singleton)
u = User.create!(station_id: 101, css_id: "INBOUND_OPS_TEAM_MAIL_INTAKE_USER",
full_name: "Jon MailTeam Snow Mail Intake", roles: ["Mail Intake"])

u = User.create!(station_id: 101, css_id: "INBOUND_OPS_TEAM_MAIL_INTAKE_USER", full_name: "Jon MailTeam Snow Mail Intake")
MailTeam.singleton.add_user(u)
end

def create_inbound_ops_team_super_user
u = User.create!(station_id: 101, css_id: "INBOUND_OPS_TEAM_MAIL_INTAKE_SUPER_USER", full_name: "Charles Xavier")
InboundOpsTeam.singleton.add_user(u)
OrganizationsUser.make_user_admin(u, MailTeam.singleton)
end

def create_cavc_lit_support_user
Expand Down
Loading