Revision control
Copy as Markdown
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
*/
package mozilla.lockbox.store
import mozilla.lockbox.action.AutofillAction
import mozilla.lockbox.extensions.filterByType
import mozilla.lockbox.flux.Dispatcher
open class AutofillStore(
val dispatcher: Dispatcher = Dispatcher.shared
) {
companion object {
val shared = AutofillStore()
}
open val autofillActions = dispatcher.register
.filterByType(AutofillAction::class.java)
}