Skip to content

Commit

Permalink
feat: Delete ToDo
Browse files Browse the repository at this point in the history
  • Loading branch information
rakuyoMo committed Nov 27, 2024
1 parent ab48b71 commit c1832b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/services/create_sample_data_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,6 @@ def android_channels_app(user)
end

def generate_release(channel, app_bundle_id, release_type, changelog, build_version: '1', device_type: nil)
#warning("TODO: 暂时缺 :use_original_filename,不知道需不需要加")
Release.new(
channel: channel,
bundle_id: app_bundle_id,
Expand All @@ -797,7 +796,8 @@ def generate_release(channel, app_bundle_id, release_type, changelog, build_vers
branch: 'develop',
device_type: device_type || channel.device_type,
git_commit: SecureRandom.hex,
changelog: changelog
changelog: changelog,
use_original_filename: false
).save(validate: false)
end

Expand Down

0 comments on commit c1832b4

Please sign in to comment.