From 44fda8fe2fe8a27b9729cde3903ec32de9859540 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Thu, 22 Jun 2023 13:10:02 +0200 Subject: [PATCH] Move settings-model to their appropriate location (IOS-14) --- Mastodon.xcodeproj/project.pbxproj | 12 ++---------- .../{Diffable => Scene}/Settings/SettingsItem.swift | 0 .../Settings/SettingsSection.swift | 0 3 files changed, 2 insertions(+), 10 deletions(-) rename Mastodon/{Diffable => Scene}/Settings/SettingsItem.swift (100%) rename Mastodon/{Diffable => Scene}/Settings/SettingsSection.swift (100%) diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index 2569ef03b..8463eb711 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -1610,7 +1610,6 @@ DB0617F727855B010030EE79 /* Notification */, DB4F097726A039A200D62E92 /* Search */, DB3E6FE52806A5BA00B035AE /* Discovery */, - DB0617FA27855B660030EE79 /* Settings */, ); path = Diffable; sourceTree = ""; @@ -1732,6 +1731,8 @@ 5B90C457262599800002E742 /* View */, DB6D9F9626367249008423CD /* SettingsViewController.swift */, 5B90C456262599800002E742 /* SettingsViewModel.swift */, + DB6D9F7C26358ED4008423CD /* SettingsSection.swift */, + DB6D9F8326358EEC008423CD /* SettingsItem.swift */, ); path = Settings; sourceTree = ""; @@ -1895,15 +1896,6 @@ path = Profile; sourceTree = ""; }; - DB0617FA27855B660030EE79 /* Settings */ = { - isa = PBXGroup; - children = ( - DB6D9F7C26358ED4008423CD /* SettingsSection.swift */, - DB6D9F8326358EEC008423CD /* SettingsItem.swift */, - ); - path = Settings; - sourceTree = ""; - }; DB0618082785B2790030EE79 /* Cell */ = { isa = PBXGroup; children = ( diff --git a/Mastodon/Diffable/Settings/SettingsItem.swift b/Mastodon/Scene/Settings/SettingsItem.swift similarity index 100% rename from Mastodon/Diffable/Settings/SettingsItem.swift rename to Mastodon/Scene/Settings/SettingsItem.swift diff --git a/Mastodon/Diffable/Settings/SettingsSection.swift b/Mastodon/Scene/Settings/SettingsSection.swift similarity index 100% rename from Mastodon/Diffable/Settings/SettingsSection.swift rename to Mastodon/Scene/Settings/SettingsSection.swift