-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fset-1979 add drop down list of civil service departments
- Loading branch information
1 parent
99d201c
commit eb40143
Showing
9 changed files
with
125 additions
and
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* Copyright 2018 HM Revenue & Customs | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package models | ||
|
||
object CivilServiceDepartments { | ||
val list = List( | ||
("Business, Energy and Industrial Strategy", false), | ||
("Cabinet Office", false), | ||
("Competition and Markets Authority", false), | ||
("Crown Commercial Service", false), | ||
("Crown Prosecution Service", false), | ||
("Department for Communities and Local Government", false), | ||
("Department for Culture, Media and Sport", false), | ||
("Department for Education", false), | ||
("Department for Environment, Food and Rural Affairs", false), | ||
("Department for Exiting the European Union", false), | ||
("Department for International Development", false), | ||
("Department for International Trade", false), | ||
("Department for Transport", false), | ||
("Department for Work and Pensions", false), | ||
("Department of Health", false), | ||
("Education and Skills Funding Agency", false), | ||
("Foreign and Commonwealth Office", false), | ||
("Insolvency Service", false), | ||
("Health and Safety Executive", false), | ||
("Her Majesty's Prison and Probation Service", false), | ||
("Her Majesty's Revenue and Customs", false), | ||
("Her Majesty's Treasury", false), | ||
("Home Office", false), | ||
("Ministry of Defence", false), | ||
("Ministry of Justice", false), | ||
("Valuation Office Agency", false), | ||
("Other", true) | ||
) | ||
} |
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