Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | # frozen_string_literal: true |
||
11 | class Remove < Action |
||
12 | attr_accessor :account |
||
13 | attr_accessor :key |
||
14 | |||
15 | # @param [AMA::Chef::User::Model::Account] account |
||
16 | # @param [AMA::Chef::User::Model::PublicKey] key |
||
17 | def initialize(account, key) |
||
18 | @account = account |
||
19 | @key = key |
||
20 | end |
||
21 | |||
22 | def apply(*) |
||
23 | noop |
||
24 | end |
||
25 | end |
||
26 | end |
||
32 |