Skip to content

Commit

Permalink
fix(expressions): Whitelist DayOfWeek enum for expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
robfletcher committed Jun 18, 2019
1 parent 96234c2 commit f04d984
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package com.netflix.spinnaker.orca.pipeline.expressions.whitelisting;

import java.text.SimpleDateFormat;
import java.time.DayOfWeek;
import java.time.Instant;
import java.time.LocalDate;
import java.time.temporal.ChronoUnit;
Expand All @@ -39,6 +40,7 @@ public interface InstantiationTypeRestrictor {
UUID.class,
Boolean.class,
LocalDate.class,
DayOfWeek.class,
Instant.class,
ChronoUnit.class)));

Expand Down

0 comments on commit f04d984

Please sign in to comment.