-
Notifications
You must be signed in to change notification settings - Fork 2
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 #259 from hmrc/ITSASU-2665
ITSASU-2665 - Add old throttle repository which will drop the collect…
- Loading branch information
Showing
3 changed files
with
60 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Copyright 2023 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 repositories | ||
|
||
import config.AppConfig | ||
import play.api.libs.json.{Format, JsObject} | ||
import uk.gov.hmrc.mongo.MongoComponent | ||
import uk.gov.hmrc.mongo.play.json.PlayMongoRepository | ||
|
||
import javax.inject.{Inject, Singleton} | ||
import scala.concurrent.{ExecutionContext, Future} | ||
|
||
@Singleton | ||
class OldThrottleRepositoryConfig @Inject()(val appConfig: AppConfig) { | ||
|
||
def mongoComponent: MongoComponent = MongoComponent(appConfig.mongoUri) | ||
|
||
} | ||
|
||
@Singleton | ||
class OldThrottleRepository @Inject()(config: OldThrottleRepositoryConfig)(implicit ec: ExecutionContext) | ||
extends PlayMongoRepository[JsObject]( | ||
collectionName = "throttle", | ||
mongoComponent = config.mongoComponent, | ||
domainFormat = implicitly[Format[JsObject]], | ||
indexes = Seq.empty | ||
) { | ||
|
||
def drop(): Future[Void] = { | ||
collection.drop().toFuture() | ||
} | ||
|
||
} |
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