Skip to content

Commit 0385d4d

Browse files
committed
#1720 change visibility to trait
1 parent 7462e53 commit 0385d4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vuu/src/main/scala/org/finos/vuu/api/TableDef.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ object Link {
2828
trait Visibility
2929

3030
// All users can create view port to see the table
31-
case object Public extends Visibility
31+
object Public extends Visibility
3232

3333
// No users can create view port to see the table. Only for vuu internal use, e.g. base tables for a join table.
34-
case object Private extends Visibility
34+
object Private extends Visibility
3535

3636
object SessionTableDef {
3737
def apply(name: String, keyField: String, columns: Array[Column], joinFields: String*): TableDef = {

0 commit comments

Comments
 (0)